System
2.0.0.0
4.0.0.0
System.Object
System.Collections.IEnumerator
Enumerators provide read-only access to the data in the collection. Enumerators cannot be used to modify the underlying collection.
Initially, the enumerator is positioned before the first element in the collection. also brings the enumerator back to this position. At this position, calling throws an exception. Therefore, you must call to advance the enumerator to the first element of the collection before reading the value of .
This class inherits from the interface. For more information about enumerating over a collection, see the topic.
Supports a simple iteration over a . This class cannot be inherited.
Property
2.0.0.0
4.0.0.0
System.Security.Cryptography.X509Certificates.X509Extension
To be added.
does not move the position of the enumerator and consecutive calls to return the same object until either or is called.
Gets the current element in the .
Method
2.0.0.0
4.0.0.0
System.Boolean
This method advances the enumerator to the next element in the collection. This class inherits from the interface. For more information about enumerating over a collection, see the topic.
Advances the enumerator to the next element in the .
true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.
Method
2.0.0.0
4.0.0.0
System.Void
An enumerator remains valid as long as the collection remains unchanged. If changes are made to the collection, such as adding, modifying or deleting elements, the enumerator is irrecoverably invalidated and the next call to or throws an .
Sets the enumerator to its initial position, which is before the first element in the .
Property
2.0.0.0
4.0.0.0
System.Object
To be added.
does not move the position of the enumerator and consecutive calls to return the same object until either or is called.
Gets an object from a collection.