X509Certificate2Enumerator Class
Supports a simple iteration over a X509Certificate2Collection object. This class cannot be inherited.
Assembly: System (in System.dll)
| Name | Description | |
|---|---|---|
![]() | Current | Gets the current element in the X509Certificate2Collection object. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | 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::MoveNext() | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see IEnumerator::MoveNext. |
![]() ![]() | IEnumerator::Reset() | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see IEnumerator::Reset. |
![]() ![]() | IEnumerator::Current | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see IEnumerator::Current. |
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.
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.




