Implemented interface member:
property
Count
System.Collections.ICollection.Count
10 references to Count
System.Security (10)
system\security\cryptography\cryptographicattribute.cs (3)
214if (index + this.Count > array.Length) 217for (int i=0; i < this.Count; i++) { 270if (m_current == ((int) m_attributes.Count - 1))
system\security\cryptography\pkcs\envelopedpkcs7.cs (3)
401if (this.Certificates.Count > 0 || this.UnprotectedAttributes.Count > 0) { 431encodeInfo.cUnprotectedAttr = (uint) this.UnprotectedAttributes.Count; 678if (unprotectedAttributes.Count > 0) {
system\security\cryptography\pkcs\pkcsutils.cs (4)
598if (attributes.Count == 0) 650IntPtr pAttrData = new IntPtr((long) pCryptAttributes.DangerousGetHandle() + (cryptAttrSize * attributes.Count)); 729cmsSignerEncodeInfo.cAuthAttr = (uint) signer.SignedAttributes.Count; 732cmsSignerEncodeInfo.cUnauthAttr = (uint) signer.UnsignedAttributes.Count;