X509ChainElementEnumerator Class
Supports a simple iteration over an X509ChainElementCollection. This class cannot be inherited.
Assembly: System (in System.dll)
| Name | Description | |
|---|---|---|
![]() | Current | Gets the current element in the X509ChainElementCollection. |
| 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 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 | This API supports the product infrastructure and is not intended to be used directly from your code. 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.
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.



