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