DataListItemCollection

DataListItemCollection

System.Web.UI.WebControls (system.web.dll)sealed class

This custom collection class contains DataListItem objects. It is used for the DataList.Items property of the DataList control.

public sealed class DataListItemCollection : ICollection, IEnumerable {
// Public Constructors
   public DataListItemCollection(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 DataListItem this[int index]{get; }
// Public Instance Methods
   public void CopyTo(Array array, int index);                  // implements ICollection
   public IEnumerator GetEnumerator( );              // implements IEnumerable
}

Returned By

DataList.Items



    Part I: Introduction to ASP.NET
    Part III: Namespace Reference
    Chapter 40. The System.Web.UI.MobileControls Namespace
    Chapter 42. The System.Web.UI.WebControls Namespace