Пример #1
0
            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);
            }
Пример #2
0
 public ArgixLogTableRowChangeEvent(ArgixLogTableRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Пример #3
0
 public void RemoveArgixLogTableRow(ArgixLogTableRow row)
 {
     this.Rows.Remove(row);
 }
Пример #4
0
 public void AddArgixLogTableRow(ArgixLogTableRow row)
 {
     this.Rows.Add(row);
 }