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