共用方式為


X509Certificate2Collection.TryExportCertificatePems 方法

定義

嘗試匯出公開 X.509 憑證,編碼為 PEM。

public:
 bool TryExportCertificatePems(Span<char> destination, [Runtime::InteropServices::Out] int % charsWritten);
public bool TryExportCertificatePems (Span<char> destination, out int charsWritten);
member this.TryExportCertificatePems : Span<char> * int -> bool
Public Function TryExportCertificatePems (destination As Span(Of Char), ByRef charsWritten As Integer) As Boolean

參數

destination
Span<Char>

要接收 PEM 編碼憑證的緩衝區。

charsWritten
Int32

當這個方法傳回時,寫入至 destination 的字元總數。

傳回

true 如果 destination 夠大以接收編碼的 PEM,則為 , false 否則為 。

例外狀況

憑證已損毀、處於無效狀態,或無法匯出至 PEM。

備註

PEM 編碼的 X.509 憑證集合將包含憑證,其中每個憑證的開頭為 -----BEGIN CERTIFICATE----- ,並以 結尾 -----END CERTIFICATE----- 為 ,且 PEM 界限之間憑證的 base64 編碼 DER 內容。 每個憑證都會以單一換行字元分隔。

          Certificates are encoded according to the IETF RFC 7468 "strict" encoding rules.

適用於