Exemplo n.º 1
0
        public static FilePokeOptions FilePoke(this ProtoServer protoServer, string filePath, Encoding encoding)
        {
            var proto = new ProtoFilePokeTask(filePath, encoding);

            protoServer.RegisterProtoTask(proto);
            return(proto);
        }
Exemplo n.º 2
0
 public static FilePokeOptions FilePoke(this ProtoServer protoServer, string filePath, Encoding encoding)
 {
     var proto = new ProtoFilePokeTask(filePath, encoding);
     protoServer.RegisterProtoTask(proto);
     return proto;
 }