X509Certificate2Enumerator Class
Supports a simple iteration over a X509Certificate2Collection object. This class cannot be inherited.
Namespace: System.Security.Cryptography.X509Certificates
Assembly: System (in System.dll)
The X509Certificate2Enumerator 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 X509Certificate2Collection object. |
![]() | Reset | Sets the enumerator to its initial position, which is before the first element in the X509Certificate2Collection object. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | IEnumerator.Current | Infrastructure. For a description of this member, see IEnumerator.Current. |
![]() ![]() | IEnumerator.MoveNext | Infrastructure. For a description of this member, see IEnumerator.MoveNext. |
![]() ![]() | IEnumerator.Reset | Infrastructure. For a description of this member, see IEnumerator.Reset. |
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. The Reset method also brings the enumerator back to this position. At this position, calling the Current property throws an exception. Therefore, you must call the MoveNext method to advance the enumerator to the first element of the collection before reading the value of Current.
This class inherits from the IEnumerator interface. For more information about enumerating over a collection, see IEnumerator.
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.

