A collection of elements of type RsdService
Inheritance: System.Collections.CollectionBase
Example #1
0
 /// <summary>
 /// Adds the elements of another RssServiceCollection to the end of this RssServiceCollection.
 /// </summary>
 /// <param name="items">
 /// The RssServiceCollection whose elements are to be added to the end of this RssServiceCollection.
 /// </param>
 public virtual void AddRange(RssServiceCollection items)
 {
     foreach (RsdService item in items)
     {
         this.List.Add(item);
     }
 }
Example #2
0
 public RsdRoot()
 {
     Namespaces = new XmlSerializerNamespaces();
     services   = new RssServiceCollection();
     version    = "1.0";
 }
Example #3
0
 public Enumerator(RssServiceCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }
Example #4
0
 /// <summary>
 /// Initializes a new instance of the RssServiceCollection class, containing elements
 /// copied from another instance of RssServiceCollection
 /// </summary>
 /// <param name="items">
 /// The RssServiceCollection whose elements are to be added to the new RssServiceCollection.
 /// </param>
 public RssServiceCollection(RssServiceCollection items)
 {
     this.AddRange(items);
 }
Example #5
0
 public RsdRoot()
 {
     Namespaces = new XmlSerializerNamespaces();
     services = new RssServiceCollection();
     version = "1.0";
 }
Example #6
0
 public Enumerator(RssServiceCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }
Example #7
0
 /// <summary>
 /// Adds the elements of another RssServiceCollection to the end of this RssServiceCollection.
 /// </summary>
 /// <param name="items">
 /// The RssServiceCollection whose elements are to be added to the end of this RssServiceCollection.
 /// </param>
 public virtual void AddRange(RssServiceCollection items)
 {
     foreach (RsdService item in items)
     {
         this.List.Add(item);
     }
 }
Example #8
0
 /// <summary>
 /// Initializes a new instance of the RssServiceCollection class, containing elements
 /// copied from another instance of RssServiceCollection
 /// </summary>
 /// <param name="items">
 /// The RssServiceCollection whose elements are to be added to the new RssServiceCollection.
 /// </param>
 public RssServiceCollection(RssServiceCollection items)
 {
     this.AddRange(items);
 }