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