e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
106 lines
3.1 KiB
C#
106 lines
3.1 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="RepeaterItemCollection.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
/*
|
|
*/
|
|
|
|
namespace System.Web.UI.WebControls {
|
|
|
|
using System;
|
|
using System.Collections;
|
|
|
|
/// <devdoc>
|
|
/// <para>Encapsulates the collection of <see cref='System.Web.UI.WebControls.RepeaterItem'/> objects within a <see cref='System.Web.UI.WebControls.Repeater'/> control.</para>
|
|
/// </devdoc>
|
|
public sealed class RepeaterItemCollection : ICollection {
|
|
|
|
private ArrayList items;
|
|
|
|
|
|
/// <devdoc>
|
|
/// Initializes a new instance of
|
|
/// the <see cref='System.Web.UI.WebControls.RepeaterItemCollection'/> class with the specified items.
|
|
/// </devdoc>
|
|
public RepeaterItemCollection(ArrayList items) {
|
|
this.items = items;
|
|
}
|
|
|
|
|
|
/// <devdoc>
|
|
/// <para>Gets the item count of the collection.</para>
|
|
/// </devdoc>
|
|
public int Count {
|
|
get {
|
|
return items.Count;
|
|
}
|
|
}
|
|
|
|
|
|
/// <devdoc>
|
|
/// <para>Gets a value indicating whether the collection is read-only.</para>
|
|
/// </devdoc>
|
|
public bool IsReadOnly {
|
|
get {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
/// <devdoc>
|
|
/// <para>Gets a value indicating whether access to the collection is synchronized
|
|
/// (thread-safe).</para>
|
|
/// </devdoc>
|
|
public bool IsSynchronized {
|
|
get {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
/// <devdoc>
|
|
/// <para>Gets the object that can be used to synchronize access to the collection. In
|
|
/// this case, it is the collection itself.</para>
|
|
/// </devdoc>
|
|
public object SyncRoot {
|
|
get {
|
|
return this;
|
|
}
|
|
}
|
|
|
|
|
|
/// <devdoc>
|
|
/// <para>Gets a <see cref='System.Web.UI.WebControls.RepeaterItem'/> referenced by the specified ordinal index value in
|
|
/// the collection.</para>
|
|
/// </devdoc>
|
|
public RepeaterItem this[int index] {
|
|
get {
|
|
return(RepeaterItem)items[index];
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/// <devdoc>
|
|
/// <para>Copies contents from the collection to a specified <see cref='System.Array' qualify='true'/> with a
|
|
/// specified starting index.</para>
|
|
/// </devdoc>
|
|
public void CopyTo(Array array, int index) {
|
|
for (IEnumerator e = this.GetEnumerator(); e.MoveNext();)
|
|
array.SetValue(e.Current, index++);
|
|
}
|
|
|
|
|
|
/// <devdoc>
|
|
/// <para>Returns an enumerator of all <see cref='System.Web.UI.WebControls.RepeaterItem'/> controls within the
|
|
/// collection.</para>
|
|
/// </devdoc>
|
|
public IEnumerator GetEnumerator() {
|
|
return items.GetEnumerator();
|
|
}
|
|
}
|
|
}
|
|
|