public Bool_String recv_GetValueListSelection_String()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   GetValueListSelection_String_result result = new GetValueListSelection_String_result();
   result.Read(iprot_);
   iprot_.ReadMessageEnd();
   if (result.__isset.success) {
     return result.Success;
   }
   throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "GetValueListSelection_String failed: unknown result");
 }
 public void GetValueListSelection_String_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   GetValueListSelection_String_args args = new GetValueListSelection_String_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   GetValueListSelection_String_result result = new GetValueListSelection_String_result();
   result.Success = iface_.GetValueListSelection_String(args._id);
   oprot.WriteMessageBegin(new TMessage("GetValueListSelection_String", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }