System.Security.Cryptography.Pkcs.RecipientInfoCollection
The RecipientInfoCollection class represents a collection of RecipientInfo objects. RecipientInfoCollection implements the ICollection interface.
The Count property retrieves the number of items in the RecipientInfoCollection collection.
The IsSynchronized property retrieves whether access to the collection is synchronized, or thread safe. This property always returns false, which means the collection is not thread safe.
The Item property retrieves the RecipientInfo object at the specified index in the collection.
The SyncRoot property retrieves an Object object used to synchronize access to the RecipientInfoCollection collection.
The CopyTo method copies the RecipientInfoCollection collection to an array.
The GetEnumerator method returns a RecipientInfoEnumerator object for the RecipientInfoCollection collection.