コード例 #1
0
ファイル: TalkService.cs プロジェクト: Banandana/LineSharp
 public void sendContentReceipt_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   sendContentReceipt_args args = new sendContentReceipt_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   sendContentReceipt_result result = new sendContentReceipt_result();
   try {
     iface_.sendContentReceipt(args.Seq, args.Consumer, args.MessageId);
   } catch (TalkException e) {
     result.E = e;
   }
   oprot.WriteMessageBegin(new TMessage("sendContentReceipt", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }