X509Certificate2.ExportCertificatePem 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
匯出公用 X.509 憑證,編碼為 PEM。
public:
System::String ^ ExportCertificatePem();
public string ExportCertificatePem ();
member this.ExportCertificatePem : unit -> string
Public Function ExportCertificatePem () As String
傳回
憑證的 PEM 編碼方式。
例外狀況
憑證已損毀、處於無效狀態,或無法匯出至 PEM。
備註
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.
憑證會根據 IETF RFC 7468「strict」 編碼規則進行編碼。