ControlCollection::GetEnumerator Method ()
.NET Framework (current version)
Retrieves an enumerator that can iterate through the ControlCollection object.
Assembly: System.Web (in System.Web.dll)
Return Value
Type: System.Collections::IEnumerator^The enumerator to iterate through the collection.
Implements
IEnumerable::GetEnumerator()The following code example creates a method that enumerates through the ControlCollection collection of a Button control, myButton. When the enumerator is created, the IsSynchronized property is checked to see if the operation is thread safe, and if it is not, the SyncRoot property is used to obtain an object to make the operation thread safe. When the enumeration is completed, the value of the IsReadOnly property is written as the Text property of a Label control on the containing page.
.NET Framework
Available since 1.1
Available since 1.1
Show: