Example #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();
 }
Example #2
0
 public void send_sendContentPreviewUpdated(int esq, string messageId, List<string> receiverMids)
 #endif
 {
   oprot_.WriteMessageBegin(new TMessage("sendContentPreviewUpdated", TMessageType.Call, seqid_));
   sendContentPreviewUpdated_args args = new sendContentPreviewUpdated_args();
   args.Esq = esq;
   args.MessageId = messageId;
   args.ReceiverMids = receiverMids;
   args.Write(oprot_);
   oprot_.WriteMessageEnd();
   #if SILVERLIGHT
   return oprot_.Transport.BeginFlush(callback, state);
   #else
   oprot_.Transport.Flush();
   #endif
 }