public alertaddressRow AddalertaddressRow(string name, string mapiaddress) { alertaddressRow rowalertaddressRow = ((alertaddressRow)(this.NewRow())); rowalertaddressRow.ItemArray = new object[] { name, mapiaddress }; this.Rows.Add(rowalertaddressRow); return(rowalertaddressRow); }
public alertaddressRowChangeEvent(alertaddressRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemovealertaddressRow(alertaddressRow row) { this.Rows.Remove(row); }
public void AddalertaddressRow(alertaddressRow row) { this.Rows.Add(row); }