Apache.Hadoop.Hbase.Hbase.Client.send_scannerOpenWithStop C# (CSharp) Method

send_scannerOpenWithStop() public method

public send_scannerOpenWithStop ( byte tableName, byte startRow, byte stopRow, List columns ) : void
tableName byte
startRow byte
stopRow byte
columns List
return void
            public void send_scannerOpenWithStop(byte[] tableName, byte[] startRow, byte[] stopRow, List<byte[]> columns)
            {
                oprot_.WriteMessageBegin(new TMessage("scannerOpenWithStop", TMessageType.Call, seqid_));
                scannerOpenWithStop_args args = new scannerOpenWithStop_args();
                args.TableName = tableName;
                args.StartRow = startRow;
                args.StopRow = stopRow;
                args.Columns = columns;
                args.Write(oprot_);
                oprot_.WriteMessageEnd();
                oprot_.Transport.Flush();
            }
Hbase.Client