EventLogEntryCollection.GetEnumerator Method

Definition

Supports a simple iteration over the EventLogEntryCollection object.

public:
 virtual System::Collections::IEnumerator ^ GetEnumerator();
public System.Collections.IEnumerator GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.IEnumerator
override this.GetEnumerator : unit -> System.Collections.IEnumerator
Public Function GetEnumerator () As IEnumerator

Returns

An object that can be used to iterate over the collection.

Implements

Remarks

The object that is returned by the GetEnumerator method is a wrapper for the EventLogEntryCollection class that implements the IEnumerator enumerator.

Note

If the collection is changed during the iteration, the iteration is terminated. To avoid this possibility, see the Item[] property for an alternative technique for iterating through a collection.

Applies to