Ejemplo n.º 1
0
            public FeedsDTRow AddFeedsDTRow(string FeedURL, string FilterString, bool TargetTitle, bool TargetDescription, string NewFeedURL, System.DateTime ResistDate)
            {
                FeedsDTRow rowFeedsDTRow = ((FeedsDTRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    FeedURL,
                    FilterString,
                    TargetTitle,
                    TargetDescription,
                    NewFeedURL,
                    ResistDate
                };
                rowFeedsDTRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowFeedsDTRow);
                return(rowFeedsDTRow);
            }
Ejemplo n.º 2
0
 public FeedsDTRowChangeEvent(FeedsDTRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public void RemoveFeedsDTRow(FeedsDTRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 4
0
 public void AddFeedsDTRow(FeedsDTRow row)
 {
     this.Rows.Add(row);
 }