4 instantiations of SignerInfoCollection
System.Security.Cryptography.Pkcs (4)
System\Security\Cryptography\Pkcs\SignedCms.cs (2)
109return new SignerInfoCollection(); 112return new SignerInfoCollection(_signedData.SignerInfos, this);
System\Security\Cryptography\Pkcs\SignerInfo.cs (2)
86return new SignerInfoCollection(); 280return new SignerInfoCollection(signerInfos.ToArray());
13 references to SignerInfoCollection
Microsoft.DotNet.SignCheckLibrary (2)
Verification\AuthentiCode.cs (2)
140SignerInfoCollection signerInfos = signedCms.SignerInfos; 205private static SignerInfo GetPrimarySignerInfo(SignerInfoCollection signerInfos)
System.Security (1)
System.Security.cs (1)
30[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.Pkcs.SignerInfoCollection))]
System.Security.Cryptography.Pkcs (10)
System\Security\Cryptography\Pkcs\Rfc3161TimestampToken.cs (1)
345SignerInfoCollection signerInfos = cms.SignerInfos;
System\Security\Cryptography\Pkcs\SignedCms.cs (4)
103public SignerInfoCollection SignerInfos 615SignerInfoCollection signers, 630SignerInfoCollection counterSigners = signer.CounterSignerInfos; 644SignerInfoCollection signers = SignerInfos;
System\Security\Cryptography\Pkcs\SignerInfo.cs (3)
77public SignerInfoCollection CounterSignerInfos 256private SignerInfoCollection GetCounterSigners(AttributeAsn[] unsignedAttrs) 430SignerInfoCollection docSigners = _document.SignerInfos;
System\Security\Cryptography\Pkcs\SignerInfoEnumerator.cs (2)
11private readonly SignerInfoCollection _signerInfos; 14internal SignerInfoEnumerator(SignerInfoCollection signerInfos)