Example #1
0
 public void send_getGroupIdsJoined()
 #endif
 {
   oprot_.WriteMessageBegin(new TMessage("getGroupIdsJoined", TMessageType.Call, seqid_));
   getGroupIdsJoined_args args = new getGroupIdsJoined_args();
   args.Write(oprot_);
   oprot_.WriteMessageEnd();
   #if SILVERLIGHT
   return oprot_.Transport.BeginFlush(callback, state);
   #else
   oprot_.Transport.Flush();
   #endif
 }
Example #2
0
 public void getGroupIdsJoined_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   getGroupIdsJoined_args args = new getGroupIdsJoined_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   getGroupIdsJoined_result result = new getGroupIdsJoined_result();
   try {
     result.Success = iface_.getGroupIdsJoined();
   } catch (TalkException e) {
     result.E = e;
   }
   oprot.WriteMessageBegin(new TMessage("getGroupIdsJoined", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }