X509Certificate2Enumerator Class
Supports a simple iteration over a X509Certificate2Collection object. This class cannot be inherited.
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.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (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.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (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 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

