CertificateStoreGetAllCertificates Method
Creates and returns a collection of all the certificates contained in the certificate store.

Namespace: MailBee.Security
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public CertificateCollection GetAllCertificates()

Return Value

Type: CertificateCollection
A CertificateCollection object containing all the certificates in the certificate store.
Remarks

The returned collection is not bound to the originating certificate store. For instance, when a certificate is removed from the returned collection, it will remain in the store. To remove a certificate from the store, use DeleteCertificate(Certificate) method.

Examples
The example is available in CertificateStore class documentation.
See Also