Exemple #1
0
            public EntriesRow AddEntriesRow(int Entry, string MemberAccessed, string Type, string Assembly, string Date, string Time, string Machine, string AppDomain, int ThreadID, string ThreadName, int ContextID, string User, string ExceptionName, string ExceptionMessage, string Event)
            {
                EntriesRow rowEntriesRow = ((EntriesRow)(this.NewRow()));

                rowEntriesRow.ItemArray = new object[] {
                    Entry,
                    MemberAccessed,
                    Type,
                    Assembly,
                    Date,
                    Time,
                    Machine,
                    AppDomain,
                    ThreadID,
                    ThreadName,
                    ContextID,
                    User,
                    ExceptionName,
                    ExceptionMessage,
                    Event
                };
                this.Rows.Add(rowEntriesRow);
                return(rowEntriesRow);
            }
Exemple #2
0
 public EntriesRowChangeEvent(EntriesRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemple #3
0
 public void RemoveEntriesRow(EntriesRow row)
 {
     this.Rows.Remove(row);
 }
Exemple #4
0
 public void AddEntriesRow(EntriesRow row)
 {
     this.Rows.Add(row);
 }
 public void RemoveEntriesRow(EntriesRow row) {
     this.Rows.Remove(row);
 }
 public void AddEntriesRow(EntriesRow row) {
     this.Rows.Add(row);
 }
 public EntriesRowChangeEvent(EntriesRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }