Beispiel #1
0
 public void send_getBlockedContactIdsByRange(int start, int count)
 #endif
 {
   oprot_.WriteMessageBegin(new TMessage("getBlockedContactIdsByRange", TMessageType.Call, seqid_));
   getBlockedContactIdsByRange_args args = new getBlockedContactIdsByRange_args();
   args.Start = start;
   args.Count = count;
   args.Write(oprot_);
   oprot_.WriteMessageEnd();
   #if SILVERLIGHT
   return oprot_.Transport.BeginFlush(callback, state);
   #else
   oprot_.Transport.Flush();
   #endif
 }
Beispiel #2
0
 public void getBlockedContactIdsByRange_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   getBlockedContactIdsByRange_args args = new getBlockedContactIdsByRange_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   getBlockedContactIdsByRange_result result = new getBlockedContactIdsByRange_result();
   try {
     result.Success = iface_.getBlockedContactIdsByRange(args.Start, args.Count);
   } catch (TalkException e) {
     result.E = e;
   }
   oprot.WriteMessageBegin(new TMessage("getBlockedContactIdsByRange", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }