Apache.Hadoop.Hbase.Thrift.Hbase.Client.recv_getVerTs C# (CSharp) Method

recv_getVerTs() public method

public recv_getVerTs ( ) : List
return List
            public List<TCell> recv_getVerTs()
            {
                TMessage msg = iprot_.ReadMessageBegin();
                if (msg.Type == TMessageType.Exception) {
                  TApplicationException x = TApplicationException.Read(iprot_);
                  iprot_.ReadMessageEnd();
                  throw x;
                }
                getVerTs_result result = new getVerTs_result();
                result.Read(iprot_);
                iprot_.ReadMessageEnd();
                if (result.__isset.success) {
                  return result.success;
                }
                if (result.__isset.io) {
                  throw result.io;
                }
                if (result.__isset.nf) {
                  throw result.nf;
                }
                throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "getVerTs failed: unknown result");
            }