X509Certificate2Collection.TryExportCertificatePems 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
PEM으로 인코딩된 공용 X.509 인증서를 내보내려고 시도합니다.
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
매개 변수
- charsWritten
- Int32
이 메서드가 반환되면 .에 기록된 총 문자 수입니다 destination
.
반환
true
인코딩된 PEM을 받을 수 있을 만큼 충분히 크면 destination
이고, false
그렇지 않으면 .
예외
인증서가 손상되었거나 잘못된 상태이거나 PEM으로 내보낼 수 없습니다.
설명
A PEM-encoded X.509 certificate collection will contain certificates
where each certificate begins with -----BEGIN CERTIFICATE-----
and ends with -----END CERTIFICATE-----
, with the base64 encoded DER
contents of the certificate between the PEM boundaries. Each certificate is
separated by a single line-feed character.
Certificates are encoded according to the IETF RFC 7468 "strict" encoding rules.