X509ChainElementEnumerator Class
Supports a simple iteration over an X509ChainElementCollection. This class cannot be inherited.
Namespace: System.Security.Cryptography.X509Certificates
Assembly: System (in System.dll)
The X509ChainElementEnumerator type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MoveNext | Advances the enumerator to the next element in the X509ChainElementCollection. |
![]() | Reset | Sets the enumerator to its initial position, which is before the first element in the X509ChainElementCollection. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | IEnumerator.Current | Infrastructure. Gets the current element in the X509ChainElementCollection. |
Enumerators provide read-only access to the data in a collection. Enumerators cannot be used to modify the underlying collection.
Initially, the enumerator is positioned before the first element in the collection. Reset resets the enumerator to this position. At this position, calling Current throws an exception. Therefore, you must call MoveNext to advance the enumerator to the first element of the collection before reading the value of Current.
This class inherits from IEnumerator. See the class for more information about enumerating over a collection.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

