A collection of elements of type AtomContent
Наследование: System.Collections.CollectionBase
Пример #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);
     }
 }
Пример #2
0
 public Enumerator(AtomContentCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }
Пример #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);
 }
Пример #4
0
			public Enumerator(AtomContentCollection collection)
			{
				this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
			}
Пример #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);
			}
		}
Пример #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);
		}