X509Certificate2.ExportCertificatePem Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Exports the public X.509 certificate, encoded as PEM.
public:
System::String ^ ExportCertificatePem();
public string ExportCertificatePem ();
member this.ExportCertificatePem : unit -> string
Public Function ExportCertificatePem () As String
Returns
The PEM encoding of the certificate.
Exceptions
The certificate is corrupt, in an invalid state, or could not be exported to PEM.
Remarks
A PEM-encoded X.509 certificate will begin with -----BEGIN CERTIFICATE-----
and end with -----END CERTIFICATE-----
, with the base64 encoded DER
contents of the certificate between the PEM boundaries.
The certificate is encoded according to the IETF RFC 7468 "strict"
encoding rules.