Initializes a new temporary
CertificateStore in memory and adds the specified certificates to it.
Namespace: LLCryptoLib.Security.CertificatesAssembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)
Syntax
C# |
---|
public CertificateStore(
IEnumerable certs
) |
Visual Basic |
---|
Public Sub New ( _
certs As IEnumerable _
) |
Visual C++ |
---|
public:
CertificateStore(
IEnumerable^ certs
) |
Parameters
- certs
- Type: System.Collections..::..IEnumerable
A set of certificates.
Remarks
Exceptions
Exception | Condition |
---|
System..::..InvalidCastException | certs contains at least one object that is not of type Certificate. |
See Also