public MailMessageRow AddMailMessageRow(string Id, string From, string To, string Cc, string Subject, bool Read, System.DateTime SentDate, string Path) { MailMessageRow rowMailMessageRow = ((MailMessageRow)(this.NewRow())); rowMailMessageRow.ItemArray = new object[] { Id, From, To, Cc, Subject, Read, SentDate, Path }; this.Rows.Add(rowMailMessageRow); return(rowMailMessageRow); }
public MailMessageRowChangeEvent(MailMessageRow row, System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveMailMessageRow(MailMessageRow row) { this.Rows.Remove(row); }
public void AddMailMessageRow(MailMessageRow row) { this.Rows.Add(row); }