Implemented interface member:
property
Count
System.Collections.ICollection.Count
13 references to Count
System.Security (13)
system\security\cryptography\pkcs\envelopedpkcs7.cs (10)
216
if (recipients.
Count
== 0)
388
if (recipients.
Count
< 1)
420
encodeInfo.cRecipients = (uint) recipients.
Count
;
629
uint[] recipientInfoTypes = new uint[recipients.
Count
];
631
int reiSize = recipients.
Count
* Marshal.SizeOf(typeof(CAPI.CMSG_RECIPIENT_ENCODE_INFO));
634
for (index = 0; index < recipients.
Count
; index++) {
652
encryptParam.rgSubjectKeyIdentifier = new SafeLocalAllocHandle[recipients.
Count
];
653
encryptParam.rgszObjId = new SafeLocalAllocHandle[recipients.
Count
];
685
for (index = 0; index < recipients.
Count
; index++) {
1017
int numRecipients = recipients.
Count
;
system\security\cryptography\pkcs\pkcs7recipient.cs (3)
149
if (index + this.
Count
> array.Length)
152
for (int i=0; i < this.
Count
; i++) {
204
if (m_current == ((int) m_recipients.
Count
- 1))