4 writes to m_recipients
System.Security (4)
system\security\cryptography\pkcs\pkcs7recipient.cs (4)
81m_recipients = new ArrayList(); 85m_recipients = new ArrayList(1); 90m_recipients = new ArrayList(certificates.Count); 98m_recipients = new ArrayList(other.m_recipients.Count);
10 references to m_recipients
System.Security (10)
system\security\cryptography\pkcs\pkcs7recipient.cs (10)
86m_recipients.Add(recipient); 92m_recipients.Add(new CmsRecipient(recipientIdentifierType, certificates[index])); 98m_recipients = new ArrayList(other.m_recipients.Count); 99foreach (CmsRecipient recipient in other.m_recipients) { 100m_recipients.Add(new CmsRecipient(recipient.RecipientIdentifierType, new X509Certificate2(recipient.Certificate))); 106if (index < 0 || index >= m_recipients.Count) 109return (CmsRecipient) m_recipients[index]; 115return m_recipients.Count; 123return m_recipients.Add(recipient); 130m_recipients.Remove(recipient);