Ejemplo n.º 1
0
            public FeedsRow AddFeedsRow(string Name, string URL, string IconFileName, System.TimeSpan RefreshInterval, System.DateTime LastUpdate, string NextUpdate)
            {
                FeedsRow rowFeedsRow = ((FeedsRow)(this.NewRow()));

                rowFeedsRow.ItemArray = new object[] {
                    Name,
                    URL,
                    IconFileName,
                    RefreshInterval,
                    LastUpdate,
                    NextUpdate
                };
                this.Rows.Add(rowFeedsRow);
                return(rowFeedsRow);
            }
Ejemplo n.º 2
0
 public FeedsRowChangeEvent(FeedsRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public void RemoveFeedsRow(FeedsRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 4
0
 public void AddFeedsRow(FeedsRow row)
 {
     this.Rows.Add(row);
 }