System.Security.Cryptography.Pkcs.CmsRecipientCollection.Remove C# (CSharp) Метод

Remove() публичный Метод

public Remove ( System recipient ) : void
recipient System
Результат void
        public void Remove(System.Security.Cryptography.Pkcs.CmsRecipient recipient)
        {
        }

Usage Example

 public static void RemoveNonExistent()
 {
     CmsRecipientCollection c = new CmsRecipientCollection();
     CmsRecipient a0 = s_cr0;
     c.Remove(a0);  // You can "remove" items that aren't in the collection - this is defined as a NOP.
 }
All Usage Examples Of System.Security.Cryptography.Pkcs.CmsRecipientCollection::Remove