public LogEntriesRow AddLogEntriesRow()
            {
                LogEntriesRow rowLogEntriesRow = ((LogEntriesRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    null
                };
                rowLogEntriesRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowLogEntriesRow);
                return(rowLogEntriesRow);
            }
            public LogEntryRow AddLogEntryRow(string kind, System.DateTime timeStamp, string testCase, string Message, LogEntriesRow parentLogEntriesRowByLogEntries_LogEntry)
            {
                LogEntryRow rowLogEntryRow = ((LogEntryRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    kind,
                    timeStamp,
                    testCase,
                    Message,
                    null
                };
                if ((parentLogEntriesRowByLogEntries_LogEntry != null))
                {
                    columnValuesArray[4] = parentLogEntriesRowByLogEntries_LogEntry[0];
                }
                rowLogEntryRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowLogEntryRow);
                return(rowLogEntryRow);
            }
 public void RemoveLogEntriesRow(LogEntriesRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddLogEntriesRow(LogEntriesRow row)
 {
     this.Rows.Add(row);
 }
 public LogEntriesRowChangeEvent(LogEntriesRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #6
0
 public LogEntryRow AddLogEntryRow(string kind, System.DateTime timeStamp, string testCase, string Message, LogEntriesRow parentLogEntriesRowByLogEntries_LogEntry)
 {
     LogEntryRow rowLogEntryRow = ((LogEntryRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             kind,
             timeStamp,
             testCase,
             Message,
             null};
     if ((parentLogEntriesRowByLogEntries_LogEntry != null)) {
         columnValuesArray[4] = parentLogEntriesRowByLogEntries_LogEntry[0];
     }
     rowLogEntryRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowLogEntryRow);
     return rowLogEntryRow;
 }
Example #7
0
 public LogEntriesRowChangeEvent(LogEntriesRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
Example #8
0
 public void RemoveLogEntriesRow(LogEntriesRow row)
 {
     this.Rows.Remove(row);
 }
Example #9
0
 public void AddLogEntriesRow(LogEntriesRow row)
 {
     this.Rows.Add(row);
 }