Exemple #1
0
            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);
            }
Exemple #2
0
 public MailMessageRowChangeEvent(MailMessageRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemple #3
0
 public void RemoveMailMessageRow(MailMessageRow row)
 {
     this.Rows.Remove(row);
 }
Exemple #4
0
 public void AddMailMessageRow(MailMessageRow row)
 {
     this.Rows.Add(row);
 }
 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);
 }