This custom collection class contains RepeaterItem
objects. It is used for the Repeater.Items
property of the Repeater control.
public sealed class RepeaterItemCollection : ICollection, IEnumerable {
// Public Constructors
public RepeaterItemCollection(System.Collections.ArrayList items);
// Public Instance Properties
public int Count{get; } // implements ICollection
public bool IsReadOnly{get; }
public bool IsSynchronized{get; } // implements ICollection
public object SyncRoot{get; } // implements ICollection
public RepeaterItem this[int index]{get; }
// Public Instance Methods
public void CopyTo(Array array, int index); // implements ICollection
public IEnumerator GetEnumerator( ); // implements IEnumerable
}