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
无法解码。