Esempio n. 1
0
 public Dictionary<string, Contact> recv_findAndAddContactsByMid()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   findAndAddContactsByMid_result result = new findAndAddContactsByMid_result();
   result.Read(iprot_);
   iprot_.ReadMessageEnd();
   if (result.__isset.success) {
     return result.Success;
   }
   if (result.__isset.e) {
     throw result.E;
   }
   throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "findAndAddContactsByMid failed: unknown result");
 }
Esempio n. 2
0
 public void findAndAddContactsByMid_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   findAndAddContactsByMid_args args = new findAndAddContactsByMid_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   findAndAddContactsByMid_result result = new findAndAddContactsByMid_result();
   try {
     result.Success = iface_.findAndAddContactsByMid(args.ReqSeq, args.Mid);
   } catch (TalkException e) {
     result.E = e;
   }
   oprot.WriteMessageBegin(new TMessage("findAndAddContactsByMid", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }