Initializes a new temporary CertificateStore in memory and adds the specified certificates to it.

Namespace: LLCryptoLib.Security.Certificates
Assembly: 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

If the store is closed, all the data in the store is lost.

Exceptions

ExceptionCondition
System..::..InvalidCastExceptioncerts contains at least one object that is not of type Certificate.

See Also