LINE.Datatypes.TalkService.Processor.findContactByUserid_Process C# (CSharp) Method

findContactByUserid_Process() public method

public findContactByUserid_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
      public void findContactByUserid_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        findContactByUserid_args args = new findContactByUserid_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        findContactByUserid_result result = new findContactByUserid_result();
        try {
          result.Success = iface_.findContactByUserid(args.Userid);
        } catch (TalkException e) {
          result.E = e;
        }
        oprot.WriteMessageBegin(new TMessage("findContactByUserid", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
TalkService.Processor