A collection of elements of type RssChannel
상속: System.Collections.CollectionBase
예제 #1
0
 /// <summary>
 /// Adds the elements of another RssChannelCollection to the end of this RssChannelCollection.
 /// </summary>
 /// <param name="items">
 /// The RssChannelCollection whose elements are to be added to the end of this RssChannelCollection.
 /// </param>
 public virtual void AddRange(RssChannelCollection items)
 {
     foreach (RssChannel item in items)
     {
         this.List.Add(item);
     }
 }
예제 #2
0
 public Enumerator(RssChannelCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }
예제 #3
0
 /// <summary>
 /// Initializes a new instance of the RssChannelCollection class, containing elements
 /// copied from another instance of RssChannelCollection
 /// </summary>
 /// <param name="items">
 /// The RssChannelCollection whose elements are to be added to the new RssChannelCollection.
 /// </param>
 public RssChannelCollection(RssChannelCollection items)
 {
     this.AddRange(items);
 }
예제 #4
0
 public RssRoot()
 {
     Namespaces = new XmlSerializerNamespaces();
     channels   = new RssChannelCollection();
     version    = "2.0";
 }
예제 #5
0
파일: Rss.cs 프로젝트: plntxt/dasblog
 public Enumerator(RssChannelCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }
예제 #6
0
파일: Rss.cs 프로젝트: plntxt/dasblog
 /// <summary>
 /// Adds the elements of another RssChannelCollection to the end of this RssChannelCollection.
 /// </summary>
 /// <param name="items">
 /// The RssChannelCollection whose elements are to be added to the end of this RssChannelCollection.
 /// </param>
 public virtual void AddRange(RssChannelCollection items)
 {
     foreach (RssChannel item in items)
     {
         this.List.Add(item);
     }
 }
예제 #7
0
파일: Rss.cs 프로젝트: plntxt/dasblog
 /// <summary>
 /// Initializes a new instance of the RssChannelCollection class, containing elements
 /// copied from another instance of RssChannelCollection
 /// </summary>
 /// <param name="items">
 /// The RssChannelCollection whose elements are to be added to the new RssChannelCollection.
 /// </param>
 public RssChannelCollection(RssChannelCollection items)
 {
     this.AddRange(items);
 }
예제 #8
0
파일: Rss.cs 프로젝트: plntxt/dasblog
 public RssRoot()
 {
     Namespaces = new XmlSerializerNamespaces();
     channels = new RssChannelCollection();
     version = "2.0";
 }