Apache.Hadoop.Hive.ThriftHiveMetastore.Client.recv_get_index_names C# (CSharp) Method

recv_get_index_names() public method

public recv_get_index_names ( ) : List
return List
            public List<string> recv_get_index_names()
            {
                TMessage msg = iprot_.ReadMessageBegin();
                if (msg.Type == TMessageType.Exception)
                {
                    TApplicationException x = TApplicationException.Read(iprot_);
                    iprot_.ReadMessageEnd();
                    throw x;
                }
                get_index_names_result result = new get_index_names_result();
                result.Read(iprot_);
                iprot_.ReadMessageEnd();
                if (result.__isset.success)
                {
                    return result.Success;
                }
                if (result.__isset.o2)
                {
                    throw result.O2;
                }
                throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "get_index_names failed: unknown result");
            }
ThriftHiveMetastore.Client