X509ChainElementEnumerator Class

Definition

Supports a simple iteration over an X509ChainElementCollection. This class cannot be inherited.

public ref class X509ChainElementEnumerator sealed : System::Collections::IEnumerator
public ref class X509ChainElementEnumerator sealed : System::Collections::Generic::IEnumerator<System::Security::Cryptography::X509Certificates::X509ChainElement ^>
public sealed class X509ChainElementEnumerator : System.Collections.IEnumerator
public sealed class X509ChainElementEnumerator : System.Collections.Generic.IEnumerator<System.Security.Cryptography.X509Certificates.X509ChainElement>
type X509ChainElementEnumerator = class
    interface IEnumerator
type X509ChainElementEnumerator = class
    interface IEnumerator<X509ChainElement>
    interface IEnumerator
    interface IDisposable
Public NotInheritable Class X509ChainElementEnumerator
Implements IEnumerator
Public NotInheritable Class X509ChainElementEnumerator
Implements IEnumerator(Of X509ChainElement)
Inheritance
X509ChainElementEnumerator
Implements

Remarks

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.

Properties

Current

Gets the current element in the X509ChainElementCollection.

Methods

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()

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 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)

Explicit Interface Implementations

IDisposable.Dispose()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

IEnumerator.Current

Gets the current element in the X509ChainElementCollection.

Applies to