A collection of elements of type url
Наследование: System.Collections.CollectionBase
Пример #1
0
 /// <summary>
 /// Adds the elements of another urlCollection to the end of this urlCollection.
 /// </summary>
 /// <param name="items">
 /// The urlCollection whose elements are to be added to the end of this urlCollection.
 /// </param>
 public virtual void AddRange(urlCollection items)
 {
     foreach (url item in items)
     {
         this.List.Add(item);
     }
 }
Пример #2
0
 public Enumerator(urlCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }
Пример #3
0
 /// <summary>
 /// Initializes a new instance of the urlCollection class, containing elements
 /// copied from another instance of urlCollection
 /// </summary>
 /// <param name="items">
 /// The urlCollection whose elements are to be added to the new urlCollection.
 /// </param>
 public urlCollection(urlCollection items)
 {
     this.AddRange(items);
 }
Пример #4
0
 public Enumerator(urlCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }
Пример #5
0
 /// <summary>
 /// Adds the elements of another urlCollection to the end of this urlCollection.
 /// </summary>
 /// <param name="items">
 /// The urlCollection whose elements are to be added to the end of this urlCollection.
 /// </param>
 public virtual void AddRange(urlCollection items)
 {
     foreach (url item in items)
     {
         this.List.Add(item);
     }
 }
Пример #6
0
 /// <summary>
 /// Initializes a new instance of the urlCollection class, containing elements
 /// copied from another instance of urlCollection
 /// </summary>
 /// <param name="items">
 /// The urlCollection whose elements are to be added to the new urlCollection.
 /// </param>
 public urlCollection(urlCollection items)
 {
     this.AddRange(items);
 }