CertFileType Enumeration
Defines types of certificate files and data.

Namespace: MailBee.Security
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public enum CertFileType
Members
  Member nameValueDescription
Cer0 The certificate file or data in X.509 format (.CER file). May contain public key only.
P7b1 The certificate file or data in PKCS #7 format (.P7B file). May contain public key only.
Pfx2 The certificate file or data in Personal Information Exchange format (.PFX file). May contain both public and private keys.
Remarks
To open a certificate file of a certain type, use Certificate(string, CertFileType, string) constructor. To open a certificate from memory, use Certificate(byte[], CertFileType, string) constructor. To save an existing certificate into a file of a certain type, use SaveToFile(String, CertFileType, String) method.
See Also