다음을 통해 공유


X509Certificate2Collection.TryExportCertificatePems 메서드

정의

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

매개 변수

destination
Span<Char>

PEM으로 인코딩된 인증서를 받을 버퍼입니다.

charsWritten
Int32

이 메서드가 반환되면 .에 기록된 총 문자 수입니다 destination.

반환

Boolean

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.

적용 대상