Пример #1
0
        ///
        /// 增加新一条新记录。
        ///
        public RowCHAT_RECORD AddRowCHAT_RECORD(System.DateTime DREAD, System.String VID, System.String VSID, System.String VRID, System.String VSNAME, System.String VRNAME, System.DateTime DCREATE, System.Byte[] CONTENT, System.String TYPE, System.Int16 NREAD)
        {
            RowCHAT_RECORD row = ((RowCHAT_RECORD)(this.NewRow()));

            row.ItemArray = new object[] { DREAD, VID, VSID, VRID, VSNAME, VRNAME, DCREATE, CONTENT, TYPE, NREAD };
            this.Rows.Add(row);
            return(row);
        }
Пример #2
0
 public RowChangeEventCHAT_RECORD(RowCHAT_RECORD row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Пример #3
0
 ///
 /// 删除指定的记录。
 ///
 public void RemoveRowCHAT_RECORD(RowCHAT_RECORD row)
 {
     this.Rows.Remove(row);
 }
Пример #4
0
 ///
 /// 增加新一条新记录。
 ///
 public void AddRowCHAT_RECORD(RowCHAT_RECORD row)
 {
     this.Rows.Add(row);
 }