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

recv_scannerGet() public method

public recv_scannerGet ( ) : TRowResult
return TRowResult
            public TRowResult recv_scannerGet()
            {
                TMessage msg = iprot_.ReadMessageBegin();
                if (msg.Type == TMessageType.Exception) {
                  TApplicationException x = TApplicationException.Read(iprot_);
                  iprot_.ReadMessageEnd();
                  throw x;
                }
                scannerGet_result result = new scannerGet_result();
                result.Read(iprot_);
                iprot_.ReadMessageEnd();
                if (result.__isset.success) {
                  return result.success;
                }
                if (result.__isset.io) {
                  throw result.io;
                }
                if (result.__isset.ia) {
                  throw result.ia;
                }
                if (result.__isset.nf) {
                  throw result.nf;
                }
                throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "scannerGet failed: unknown result");
            }