Sdílet prostřednictvím


CertificateRevocationListBuilder.Load Metoda

Definice

Přetížení

Load(Byte[], BigInteger)

Dekóduje zadaný seznam odvolaných certifikátů (CRL) a vytvoří CertificateRevocationListBuilder se všemi položkami odvolání z dekódovaného seznamu CRL.

Load(ReadOnlySpan<Byte>, BigInteger, Int32)

Dekóduje zadaný seznam odvolaných certifikátů (CRL) a vytvoří CertificateRevocationListBuilder se všemi položkami odvolání z dekódovaného seznamu CRL.

Load(Byte[], BigInteger)

Zdroj:
CertificateRevocationListBuilder.Load.cs
Zdroj:
CertificateRevocationListBuilder.Load.cs
Zdroj:
CertificateRevocationListBuilder.Load.cs

Dekóduje zadaný seznam odvolaných certifikátů (CRL) a vytvoří CertificateRevocationListBuilder se všemi položkami odvolání z dekódovaného seznamu CRL.

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

Parametry

currentCrl
Byte[]

Kódovaný název CRL s kódováním DER k dekódování.

currentCrlNumber
BigInteger

Když se tato metoda vrátí, obsahuje pořadové číslo seznamu CRL z dekódovaného seznamu CRL. Tento parametr je považován za neinicializovaný.

Návraty

Nový tvůrce, který má stejné položky odvolání jako dekódovaný CRL.

Výjimky

currentCrl je null.

currentCrl nelze dekódovat.

-nebo-

currentCrl bylo dekódováno úspěšně, ale dekódování nepotřeboval všechny bajty v poli.

Platí pro

Load(ReadOnlySpan<Byte>, BigInteger, Int32)

Zdroj:
CertificateRevocationListBuilder.Load.cs
Zdroj:
CertificateRevocationListBuilder.Load.cs
Zdroj:
CertificateRevocationListBuilder.Load.cs

Dekóduje zadaný seznam odvolaných certifikátů (CRL) a vytvoří CertificateRevocationListBuilder se všemi položkami odvolání z dekódovaného seznamu CRL.

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

Parametry

currentCrl
ReadOnlySpan<Byte>

Kódovaný název CRL s kódováním DER k dekódování.

currentCrlNumber
BigInteger

Když se tato metoda vrátí, obsahuje pořadové číslo seznamu CRL z dekódovaného seznamu CRL. Tento parametr je považován za neinicializovaný.

bytesConsumed
Int32

Když tato metoda vrátí, obsahuje počet bajtů, které byly přečteny při currentCrl dekódování.

Návraty

Nový tvůrce, který má stejné položky odvolání jako dekódovaný CRL.

Výjimky

currentCrl nelze dekódovat.

Platí pro