Esempio n. 1
0
        public static XmlPokeOptions XmlPoke(this ProtoServer protoServer, string filePath, IDictionary <string, string> namespacePrefixes)
        {
            var proto = new ProtoXmlPokeTask(filePath, namespacePrefixes);

            protoServer.RegisterProtoTask(proto);
            return(proto);
        }
Esempio n. 2
0
        public static XmlPokeOptions XmlPoke(this ProtoServer protoServer, string filePath)
        {
            var proto = new ProtoXmlPokeTask(filePath);

            protoServer.RegisterProtoTask(proto);
            return(proto);
        }
Esempio n. 3
0
 public static XmlPokeOptions XmlPoke(this ProtoServer protoServer, string filePath, IDictionary<string, string> namespacePrefixes)
 {
     var proto = new ProtoXmlPokeTask(filePath, namespacePrefixes);
     protoServer.RegisterProtoTask(proto);
     return proto;
 }
Esempio n. 4
0
 public static XmlPokeOptions XmlPoke(this ProtoServer protoServer, string filePath)
 {
     var proto = new ProtoXmlPokeTask(filePath);
     protoServer.RegisterProtoTask(proto);
     return proto;
 }