Apache.Hadoop.Hive.ThriftHiveMetastore.Client.recv_get_delegation_token_with_signature C# (CSharp) Метод

recv_get_delegation_token_with_signature() публичный Метод

public recv_get_delegation_token_with_signature ( ) : string
Результат string
            public string recv_get_delegation_token_with_signature()
            {
                TMessage msg = iprot_.ReadMessageBegin();
                if (msg.Type == TMessageType.Exception)
                {
                    TApplicationException x = TApplicationException.Read(iprot_);
                    iprot_.ReadMessageEnd();
                    throw x;
                }
                get_delegation_token_with_signature_result result = new get_delegation_token_with_signature_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_with_signature failed: unknown result");
            }
ThriftHiveMetastore.Client