CertificateRevocationListBuilder.Load 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Load(Byte[], BigInteger) |
將指定的證書吊銷清單譯碼 (CRL) ,併產生 CertificateRevocationListBuilder ,其中包含已譯碼 CRL 的所有撤銷專案。 |
Load(ReadOnlySpan<Byte>, BigInteger, Int32) |
將指定的證書吊銷清單譯碼 (CRL) ,併產生 CertificateRevocationListBuilder ,其中包含已譯碼 CRL 的所有撤銷專案。 |
Load(Byte[], BigInteger)
將指定的證書吊銷清單譯碼 (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相同。
例外狀況
currentCrl
為 null
。
適用於
Load(ReadOnlySpan<Byte>, BigInteger, Int32)
將指定的證書吊銷清單譯碼 (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
無法譯碼。