共用方式為


CertificateRevocationListBuilder.Load 方法

定義

多載

Load(Byte[], BigInteger)

將指定的證書吊銷清單譯碼 (CRL) ,併產生 CertificateRevocationListBuilder ,其中包含已譯碼 CRL 的所有撤銷專案。

Load(ReadOnlySpan<Byte>, BigInteger, Int32)

將指定的證書吊銷清單譯碼 (CRL) ,併產生 CertificateRevocationListBuilder ,其中包含已譯碼 CRL 的所有撤銷專案。

Load(Byte[], BigInteger)

來源:
CertificateRevocationListBuilder.Load.cs
來源:
CertificateRevocationListBuilder.Load.cs
來源:
CertificateRevocationListBuilder.Load.cs

將指定的證書吊銷清單譯碼 (CRL) ,併產生 CertificateRevocationListBuilder ,其中包含已譯碼 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

參數

currentCrl
Byte[]

要譯碼的 DER 編碼 CRL。

currentCrlNumber
BigInteger

當這個方法傳回時,會包含已譯碼 CRL 中的 CRL 序號。 這個參數會被視為未初始化。

傳回

新的產生器,其撤銷專案與已譯碼的CRL相同。

例外狀況

currentCrlnull

currentCrl 無法譯碼。

-或-

currentCrl 譯碼成功,但譯碼不需要數位中提供的所有位元組。

適用於

Load(ReadOnlySpan<Byte>, BigInteger, Int32)

來源:
CertificateRevocationListBuilder.Load.cs
來源:
CertificateRevocationListBuilder.Load.cs
來源:
CertificateRevocationListBuilder.Load.cs

將指定的證書吊銷清單譯碼 (CRL) ,併產生 CertificateRevocationListBuilder ,其中包含已譯碼 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

參數

currentCrl
ReadOnlySpan<Byte>

要譯碼的 DER 編碼 CRL。

currentCrlNumber
BigInteger

當這個方法傳回時,會包含已譯碼 CRL 中的 CRL 序號。 這個參數會被視為未初始化。

bytesConsumed
Int32

當這個方法傳回時,會包含譯碼時讀取自 currentCrl 的位元元組數目。

傳回

新的產生器,其撤銷專案與已譯碼的CRL相同。

例外狀況

currentCrl 無法譯碼。

適用於