public void send_getRowWithColumns(byte[] tableName, byte[] row, List<byte[]> columns) { this.oprot_.WriteMessageBegin(new TMessage("getRowWithColumns", TMessageType.Call, this.seqid_)); var args = new getRowWithColumns_args(); args.TableName = tableName; args.Row = row; args.Columns = columns; args.Write(this.oprot_); this.oprot_.WriteMessageEnd(); this.oprot_.Transport.Flush(); }
public void send_getRowWithColumns(byte[] tableName, byte[] row, List<byte[]> columns, Dictionary<byte[], byte[]> attributes) #endif { oprot_.WriteMessageBegin(new TMessage("getRowWithColumns", TMessageType.Call, seqid_)); getRowWithColumns_args args = new getRowWithColumns_args(); args.TableName = tableName; args.Row = row; args.Columns = columns; args.Attributes = attributes; args.Write(oprot_); oprot_.WriteMessageEnd(); #if SILVERLIGHT return oprot_.Transport.BeginFlush(callback, state); #else oprot_.Transport.Flush(); #endif }