示例#1
0
 public void sendContentPreviewUpdated_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   sendContentPreviewUpdated_args args = new sendContentPreviewUpdated_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   sendContentPreviewUpdated_result result = new sendContentPreviewUpdated_result();
   try {
     result.Success = iface_.sendContentPreviewUpdated(args.Esq, args.MessageId, args.ReceiverMids);
   } catch (TalkException e) {
     result.E = e;
   }
   oprot.WriteMessageBegin(new TMessage("sendContentPreviewUpdated", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }
示例#2
0
 public Dictionary<string, string> recv_sendContentPreviewUpdated()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   sendContentPreviewUpdated_result result = new sendContentPreviewUpdated_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, "sendContentPreviewUpdated failed: unknown result");
 }