public void send_getRows(byte[] tableName, List<byte[]> rows) { this.oprot_.WriteMessageBegin(new TMessage("getRows", TMessageType.Call, this.seqid_)); var args = new getRows_args(); args.TableName = tableName; args.Rows = rows; args.Write(this.oprot_); this.oprot_.WriteMessageEnd(); this.oprot_.Transport.Flush(); }
public void send_getRows(byte[] tableName, List<byte[]> rows, Dictionary<byte[], byte[]> attributes) #endif { oprot_.WriteMessageBegin(new TMessage("getRows", TMessageType.Call, seqid_)); getRows_args args = new getRows_args(); args.TableName = tableName; args.Rows = rows; args.Attributes = attributes; args.Write(oprot_); oprot_.WriteMessageEnd(); #if SILVERLIGHT return oprot_.Transport.BeginFlush(callback, state); #else oprot_.Transport.Flush(); #endif }