ConfigurationElementCollectionBase<T>.GetEnumerator Method

Definition

Returns an enumerator that iterates through a collection.

public:
 virtual System::Collections::Generic::IEnumerator<T> ^ GetEnumerator();
public System.Collections.Generic.IEnumerator<T> GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.Generic.IEnumerator<'T (requires 'T :> Microsoft.Web.Administration.ConfigurationElement)>
override this.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<'T (requires 'T :> Microsoft.Web.Administration.ConfigurationElement)>
Public Function GetEnumerator () As IEnumerator(Of T)

Returns

A IEnumerator interface that iterates through the collection.

Implements

Remarks

Rather than directly manipulating the enumerator, you should use the C# foreach statement (for each in C++, For Each in Visual Basic), which hides the complexity of the enumerators.

Enumerating through a collection is intrinsically not a thread-safe procedure. Even when a collection is synchronized, other threads can still modify the collection, which causes the enumerator to throw an exception. To guarantee thread safety during enumeration, you can either lock the collection during the entire enumeration or catch the exceptions that result from changes made by other threads. To enable the collection to be accessed by multiple threads for reading and writing, you must implement your own synchronization.

Applies to