// // X509CertificateExEnumerator.cs - System.Security.Cryptography.X509Certificates.X509CertificateExEnumerator // // Author: // Sebastien Pouliot (spouliot@motus.com) // // (C) 2003 Motus Technologies Inc. (http://www.motus.com) // #if NET_2_0 using System; using System.Collections; namespace System.Security.Cryptography.X509Certificates { // Note: Match the definition of framework version 1.2.3400.0 on http://longhorn.msdn.microsoft.com public sealed class X509CertificateExEnumerator : IEnumerator { private IEnumerator enumerator; internal X509CertificateExEnumerator (X509CertificateExCollection collection) { enumerator = ((IEnumerable) collection).GetEnumerator (); } // properties public X509CertificateEx Current { get { return (X509CertificateEx) enumerator.Current; } } object IEnumerator.Current { get { return enumerator.Current; } } // methods public bool MoveNext () { return enumerator.MoveNext (); } public void Reset () { enumerator.Reset (); } } } #endif