A collection of elements of type RssItem
Inheritance: System.Collections.CollectionBase
Exemplo n.º 1
0
 /// <summary>
 /// Adds the elements of another RssItemCollection to the end of this RssItemCollection.
 /// </summary>
 /// <param name="items">
 /// The RssItemCollection whose elements are to be added to the end of this RssItemCollection.
 /// </param>
 public virtual void AddRange(RssItemCollection items)
 {
     foreach (RssItem item in items)
     {
         this.List.Add(item);
     }
 }
Exemplo n.º 2
0
 public Enumerator(RssItemCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }
Exemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the RssItemCollection class, containing elements
 /// copied from another instance of RssItemCollection
 /// </summary>
 /// <param name="items">
 /// The RssItemCollection whose elements are to be added to the new RssItemCollection.
 /// </param>
 public RssItemCollection(RssItemCollection items)
 {
     this.AddRange(items);
 }
Exemplo n.º 4
0
 public Enumerator(RssItemCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }
Exemplo n.º 5
0
 /// <summary>
 /// Adds the elements of another RssItemCollection to the end of this RssItemCollection.
 /// </summary>
 /// <param name="items">
 /// The RssItemCollection whose elements are to be added to the end of this RssItemCollection.
 /// </param>
 public virtual void AddRange(RssItemCollection items)
 {
     foreach (RssItem item in items)
     {
         this.List.Add(item);
     }
 }
Exemplo n.º 6
0
 /// <summary>
 /// Initializes a new instance of the RssItemCollection class, containing elements
 /// copied from another instance of RssItemCollection
 /// </summary>
 /// <param name="items">
 /// The RssItemCollection whose elements are to be added to the new RssItemCollection.
 /// </param>
 public RssItemCollection(RssItemCollection items)
 {
     this.AddRange(items);
 }