Beispiel #1
0
            public TRequestUrlRow AddTRequestUrlRow(string Url, int RequestCount)
            {
                TRequestUrlRow rowTRequestUrlRow = ((TRequestUrlRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Url,
                    RequestCount
                };
                rowTRequestUrlRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowTRequestUrlRow);
                return(rowTRequestUrlRow);
            }
 public TRequestUrlRowChangeEvent(TRequestUrlRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveTRequestUrlRow(TRequestUrlRow row) {
     this.Rows.Remove(row);
 }
 public void AddTRequestUrlRow(TRequestUrlRow row) {
     this.Rows.Add(row);
 }
Beispiel #5
0
 public TRequestUrlRowChangeEvent(TRequestUrlRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Beispiel #6
0
 public void RemoveTRequestUrlRow(TRequestUrlRow row)
 {
     this.Rows.Remove(row);
 }
Beispiel #7
0
 public void AddTRequestUrlRow(TRequestUrlRow row)
 {
     this.Rows.Add(row);
 }