8 instantiations of CryptographicAttributeObjectCollection
System.Security (8)
system\security\cryptography\cryptographicattribute.cs (1)
240return new CryptographicAttributeObjectCollection(this);
system\security\cryptography\pkcs\envelopedpkcs7.cs (1)
113m_unprotectedAttributes = new CryptographicAttributeObjectCollection();
system\security\cryptography\pkcs\pkcs7signer.cs (2)
72m_signedAttributes = new CryptographicAttributeObjectCollection(); 73m_unsignedAttributes = new CryptographicAttributeObjectCollection();
system\security\cryptography\pkcs\pkcsutils.cs (2)
335CryptographicAttributeObjectCollection attributes = new CryptographicAttributeObjectCollection(); 356attributes = new CryptographicAttributeObjectCollection(pbUnprotectedAttr);
system\security\cryptography\pkcs\signerinfo.cs (2)
122m_signedAttributes = new CryptographicAttributeObjectCollection(m_cmsgSignerInfo.AuthAttrs); 132m_unsignedAttributes = new CryptographicAttributeObjectCollection(m_cmsgSignerInfo.UnauthAttrs);
20 references to CryptographicAttributeObjectCollection
System.Security (18)
system\security\cryptography\cryptographicattribute.cs (4)
108private CryptographicAttributeObjectCollection(CryptographicAttributeObjectCollection other) { 239internal CryptographicAttributeObjectCollection DeepCopy() { 246private CryptographicAttributeObjectCollection m_attributes; 251internal CryptographicAttributeObjectEnumerator(CryptographicAttributeObjectCollection attributes) {
system\security\cryptography\pkcs\envelopedpkcs7.cs (3)
35private CryptographicAttributeObjectCollection m_unprotectedAttributes; 144public CryptographicAttributeObjectCollection UnprotectedAttributes { 621CryptographicAttributeObjectCollection unprotectedAttributes,
system\security\cryptography\pkcs\pkcs7signer.cs (4)
21private CryptographicAttributeObjectCollection m_signedAttributes; 22private CryptographicAttributeObjectCollection m_unsignedAttributes; 115public CryptographicAttributeObjectCollection SignedAttributes { 121public CryptographicAttributeObjectCollection UnsignedAttributes {
system\security\cryptography\pkcs\pkcsutils.cs (3)
333internal static unsafe CryptographicAttributeObjectCollection GetUnprotectedAttributes (SafeCryptMsgHandle safeCryptMsgHandle) { 335CryptographicAttributeObjectCollection attributes = new CryptographicAttributeObjectCollection(); 594internal static unsafe IntPtr CreateCryptAttributes (CryptographicAttributeObjectCollection attributes) {
system\security\cryptography\pkcs\signerinfo.cs (4)
26private CryptographicAttributeObjectCollection m_signedAttributes; 27private CryptographicAttributeObjectCollection m_unsignedAttributes; 118public CryptographicAttributeObjectCollection SignedAttributes { 128public CryptographicAttributeObjectCollection UnsignedAttributes {
System.Windows.Forms (2)
parent\parent\parent\public\Internal\NDP\Inc\mansign2.cs (2)
793CryptographicAttributeObjectCollection caos = signedCms.SignerInfos[0].SignedAttributes; 875CryptographicAttributeObjectCollection caos = signedCms.SignerInfos[0].SignedAttributes;