public string recv_get_delegation_token()
 {
     TMessage msg = iprot_.ReadMessageBegin();
     if (msg.Type == TMessageType.Exception)
     {
         TApplicationException x = TApplicationException.Read(iprot_);
         iprot_.ReadMessageEnd();
         throw x;
     }
     get_delegation_token_result result = new get_delegation_token_result();
     result.Read(iprot_);
     iprot_.ReadMessageEnd();
     if (result.__isset.success)
     {
         return result.Success;
     }
     if (result.__isset.o1)
     {
         throw result.O1;
     }
     throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "get_delegation_token failed: unknown result");
 }
 public void get_delegation_token_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
     get_delegation_token_args args = new get_delegation_token_args();
     args.Read(iprot);
     iprot.ReadMessageEnd();
     get_delegation_token_result result = new get_delegation_token_result();
     try
     {
         result.Success = iface_.get_delegation_token(args.Renewer_kerberos_principal_name);
     }
     catch (MetaException o1)
     {
         result.O1 = o1;
     }
     oprot.WriteMessageBegin(new TMessage("get_delegation_token", TMessageType.Reply, seqid));
     result.Write(oprot);
     oprot.WriteMessageEnd();
     oprot.Transport.Flush();
 }