X509CertificateCollection.X509CertificateEnumerator Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates the X509Certificate objects in an X509CertificateCollection.
public: ref class X509CertificateCollection::X509CertificateEnumerator : System::Collections::IEnumerator
public class X509CertificateCollection.X509CertificateEnumerator : System.Collections.IEnumerator
type X509CertificateCollection.X509CertificateEnumerator = class
interface IEnumerator
Public Class X509CertificateCollection.X509CertificateEnumerator
Implements IEnumerator
- Inheritance
-
X509CertificateCollection.X509CertificateEnumerator
- Implements
Remarks
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.
Constructors
X509CertificateCollection.X509CertificateEnumerator(X509CertificateCollection) |
Initializes a new instance of the X509CertificateCollection.X509CertificateEnumerator class for the specified X509CertificateCollection. |
Properties
Current |
Gets the current X509Certificate in the X509CertificateCollection. |
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 of the collection. |
Reset() |
Sets the enumerator to its initial position, which is before the first element in the collection. |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |
Explicit Interface Implementations
IEnumerator.Current |
For a description of this member, see Current. |
IEnumerator.MoveNext() |
For a description of this member, see MoveNext(). |
IEnumerator.Reset() |
For a description of this member, see Reset(). |