public void getBlockedInstances_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   getBlockedInstances_args args = new getBlockedInstances_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   getBlockedInstances_result result = new getBlockedInstances_result();
   try {
     result.Success = iface_.getBlockedInstances(args.UserId, args.Session);
   } catch (ChatUserInfoException ex) {
     result.Ex = ex;
   } catch (SessionException se) {
     result.Se = se;
   }
   oprot.WriteMessageBegin(new TMessage("getBlockedInstances", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }
 public List<ChatBlockedInstance> recv_getBlockedInstances()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   getBlockedInstances_result result = new getBlockedInstances_result();
   result.Read(iprot_);
   iprot_.ReadMessageEnd();
   if (result.__isset.success) {
     return result.Success;
   }
   if (result.__isset.ex) {
     throw result.Ex;
   }
   if (result.__isset.se) {
     throw result.Se;
   }
   throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "getBlockedInstances failed: unknown result");
 }