Exemplo 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);
        }
Exemplo n.º 2
0
        public static XmlPokeOptions XmlPoke(this ProtoServer protoServer, string filePath)
        {
            var proto = new ProtoXmlPokeTask(filePath);

            protoServer.RegisterProtoTask(proto);
            return(proto);
        }
Exemplo 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;
 }
Exemplo n.º 4
0
 public static XmlPokeOptions XmlPoke(this ProtoServer protoServer, string filePath)
 {
     var proto = new ProtoXmlPokeTask(filePath);
     protoServer.RegisterProtoTask(proto);
     return proto;
 }