Apache.Hadoop.Hbase.Thrift.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();
            }