public ArgixLogTableRow AddArgixLogTableRow(long ID, string Name, int Level, System.DateTime Date, string Source, string Category, string Event, string User, string Computer, string Keyword1, string Keyword2, string Keyword3, string Message) { ArgixLogTableRow rowArgixLogTableRow = ((ArgixLogTableRow)(this.NewRow())); rowArgixLogTableRow.ItemArray = new object[] { ID, Name, Level, Date, Source, Category, Event, User, Computer, Keyword1, Keyword2, Keyword3, Message }; this.Rows.Add(rowArgixLogTableRow); return(rowArgixLogTableRow); }
public ArgixLogTableRowChangeEvent(ArgixLogTableRow row, System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveArgixLogTableRow(ArgixLogTableRow row) { this.Rows.Remove(row); }
public void AddArgixLogTableRow(ArgixLogTableRow row) { this.Rows.Add(row); }