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 RemoveLogEntryRow(LogEntryRow row) { this.Rows.Remove(row); }
public void AddLogEntryRow(LogEntryRow row) { this.Rows.Add(row); }
public LogEntryRowChangeEvent(LogEntryRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }