System.Security.Cryptography.Pkcs.RecipientInfoEnumerator
The RecipientInfoEnumerator class provides enumeration functionality for the RecipientInfoCollection collection. RecipientInfoEnumerator implements the IEnumerator interface.
namespace System.Security.Cryptography.Pkcs
{
public sealed class RecipientInfoEnumerator : IEnumerator
{
public RecipientInfo Current { get; }
public bool MoveNext();
public void Reset();
}
}