ConfigurationAttributeSchemaCollection.GetEnumerator Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a generic enumerator that iterates through the configuration attribute schema collection.
public:
virtual System::Collections::Generic::IEnumerator<Microsoft::Web::Administration::ConfigurationAttributeSchema ^> ^ GetEnumerator();
public System.Collections.Generic.IEnumerator<Microsoft.Web.Administration.ConfigurationAttributeSchema> GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.Generic.IEnumerator<Microsoft.Web.Administration.ConfigurationAttributeSchema>
override this.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<Microsoft.Web.Administration.ConfigurationAttributeSchema>
Public Function GetEnumerator () As IEnumerator(Of ConfigurationAttributeSchema)
Returns
A IEnumerator<T> interface that iterates through the collection.
Implements
Remarks
The foreach
statement of the C# language (For Each
in Visual Basic) hides the complexity of the enumerators. Therefore, you should use foreach
rather than directly manipulating the enumerator.
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.