CertificateRevocationListBuilder.Load 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Load(Byte[], BigInteger) |
지정된 CRL(인증서 해지 목록)을 디코딩하고 디코딩된 CRL의 모든 해지 항목을 사용하여 을 생성 CertificateRevocationListBuilder 합니다. |
Load(ReadOnlySpan<Byte>, BigInteger, Int32) |
지정된 CRL(인증서 해지 목록)을 디코딩하고 디코딩된 CRL의 모든 해지 항목을 사용하여 을 생성 CertificateRevocationListBuilder 합니다. |
Load(Byte[], BigInteger)
지정된 CRL(인증서 해지 목록)을 디코딩하고 디코딩된 CRL의 모든 해지 항목을 사용하여 을 생성 CertificateRevocationListBuilder 합니다.
public:
static System::Security::Cryptography::X509Certificates::CertificateRevocationListBuilder ^ Load(cli::array <System::Byte> ^ currentCrl, [Runtime::InteropServices::Out] System::Numerics::BigInteger % currentCrlNumber);
public static System.Security.Cryptography.X509Certificates.CertificateRevocationListBuilder Load (byte[] currentCrl, out System.Numerics.BigInteger currentCrlNumber);
static member Load : byte[] * BigInteger -> System.Security.Cryptography.X509Certificates.CertificateRevocationListBuilder
Public Shared Function Load (currentCrl As Byte(), ByRef currentCrlNumber As BigInteger) As CertificateRevocationListBuilder
매개 변수
- currentCrl
- Byte[]
디코딩할 DER로 인코딩된 CRL입니다.
- currentCrlNumber
- BigInteger
이 메서드가 반환될 때 디코딩된 CRL의 CRL 시퀀스 번호를 포함합니다. 이 매개 변수는 초기화되지 않은 것으로 처리됩니다.
반환
디코딩된 CRL과 동일한 해지 항목이 있는 새 작성기입니다.
예외
currentCrl
은 null
입니다.
currentCrl
디코딩할 수 없습니다.
또는
currentCrl
성공적으로 디코딩되었지만 디코딩에 배열에 제공된 모든 바이트가 필요하지는 않았습니다.
적용 대상
Load(ReadOnlySpan<Byte>, BigInteger, Int32)
지정된 CRL(인증서 해지 목록)을 디코딩하고 디코딩된 CRL의 모든 해지 항목을 사용하여 을 생성 CertificateRevocationListBuilder 합니다.
public:
static System::Security::Cryptography::X509Certificates::CertificateRevocationListBuilder ^ Load(ReadOnlySpan<System::Byte> currentCrl, [Runtime::InteropServices::Out] System::Numerics::BigInteger % currentCrlNumber, [Runtime::InteropServices::Out] int % bytesConsumed);
public static System.Security.Cryptography.X509Certificates.CertificateRevocationListBuilder Load (ReadOnlySpan<byte> currentCrl, out System.Numerics.BigInteger currentCrlNumber, out int bytesConsumed);
static member Load : ReadOnlySpan<byte> * BigInteger * int -> System.Security.Cryptography.X509Certificates.CertificateRevocationListBuilder
Public Shared Function Load (currentCrl As ReadOnlySpan(Of Byte), ByRef currentCrlNumber As BigInteger, ByRef bytesConsumed As Integer) As CertificateRevocationListBuilder
매개 변수
- currentCrl
- ReadOnlySpan<Byte>
디코딩할 DER로 인코딩된 CRL입니다.
- currentCrlNumber
- BigInteger
이 메서드가 반환될 때 디코딩된 CRL의 CRL 시퀀스 번호를 포함합니다. 이 매개 변수는 초기화되지 않은 것으로 처리됩니다.
- bytesConsumed
- Int32
이 메서드가 반환되면 디코딩하는 동안 읽 currentCrl
은 바이트 수가 포함됩니다.
반환
디코딩된 CRL과 동일한 해지 항목이 있는 새 작성기입니다.
예외
currentCrl
디코딩할 수 없습니다.
적용 대상
.NET