CertStoreType Enumeration
Defines certificate store types.

Namespace: MailBee.Security
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public enum CertStoreType
Members
  Member nameValueDescription
PublicFile8 A file in SST or PKCS #7 (.P7B) format which contains certificates with public keys only.
System10 Standard system store (stored in Windows registry, examples are Personal, OtherPeople, etc). May contain certificates with public and private keys.
Memory2 Temporary memory storage. Often used to create a new store which can then be saved into a file. May contain certificates with public and private keys.
Pkcs7Bytes5 A byte array in PKCS #7 (.P7B) format. Used with CertificateStore(Byte, CertStoreType, CryptoServiceProvider) overload.
SerializedBytes6 A byte array in SST format. Used with CertificateStore(Byte, CertStoreType, CryptoServiceProvider) overload.
Ldap16 A storage populated with certificates, CRLs, and CTLs obtained from the results of the query specified by an LDAP URL. To perform write operations for the store, the URL must specify a BASE query with no filter and a single attribute.
PfxFile17 A file in PFX (Personal Information Exchange, PKCS #12) format which may contain certificates with public and private keys. PFX files can be protected with a password.
PfxBytes18 A byte array in PFX format. All characteristics of PfxFile apply. To open a certificate store from PFX bytes array, use CertificateStore(Byte, String) constructor.
Remarks
To open a certificate store of a certain type, create CertificateStore object using CertificateStore(String, CertStoreType, String) constructor or its overloads.
See Also