CertificateRevocationListBuilder.LoadPem 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
LoadPem(ReadOnlySpan<Char>, BigInteger) |
(CRL) 解码指定的证书吊销列表,并生成包含 CertificateRevocationListBuilder 已解码 CRL 中所有吊销条目的 。 |
LoadPem(String, BigInteger) |
(CRL) 解码指定的证书吊销列表,并生成包含 CertificateRevocationListBuilder 已解码 CRL 中所有吊销条目的 。 |
LoadPem(ReadOnlySpan<Char>, BigInteger)
(CRL) 解码指定的证书吊销列表,并生成包含 CertificateRevocationListBuilder 已解码 CRL 中所有吊销条目的 。
public:
static System::Security::Cryptography::X509Certificates::CertificateRevocationListBuilder ^ LoadPem(ReadOnlySpan<char> currentCrl, [Runtime::InteropServices::Out] System::Numerics::BigInteger % currentCrlNumber);
public static System.Security.Cryptography.X509Certificates.CertificateRevocationListBuilder LoadPem (ReadOnlySpan<char> currentCrl, out System.Numerics.BigInteger currentCrlNumber);
static member LoadPem : ReadOnlySpan<char> * BigInteger -> System.Security.Cryptography.X509Certificates.CertificateRevocationListBuilder
Public Shared Function LoadPem (currentCrl As ReadOnlySpan(Of Char), ByRef currentCrlNumber As BigInteger) As CertificateRevocationListBuilder
参数
- currentCrl
- ReadOnlySpan<Char>
要解码的 PEM 编码 CRL。
- currentCrlNumber
- BigInteger
此方法返回时,包含解码 CRL 中的 CRL 序列号。 该参数未经初始化即被处理。
返回
具有与解码的 CRL 相同的吊销条目的新生成器。
例外
注解
这会加载找到的第一个 X509 CRL
带有标签的格式正确的 PEM。
适用于
LoadPem(String, BigInteger)
(CRL) 解码指定的证书吊销列表,并生成包含 CertificateRevocationListBuilder 已解码 CRL 中所有吊销条目的 。
public:
static System::Security::Cryptography::X509Certificates::CertificateRevocationListBuilder ^ LoadPem(System::String ^ currentCrl, [Runtime::InteropServices::Out] System::Numerics::BigInteger % currentCrlNumber);
public static System.Security.Cryptography.X509Certificates.CertificateRevocationListBuilder LoadPem (string currentCrl, out System.Numerics.BigInteger currentCrlNumber);
static member LoadPem : string * BigInteger -> System.Security.Cryptography.X509Certificates.CertificateRevocationListBuilder
Public Shared Function LoadPem (currentCrl As String, ByRef currentCrlNumber As BigInteger) As CertificateRevocationListBuilder
参数
- currentCrl
- String
要解码的 PEM 编码 CRL。
- currentCrlNumber
- BigInteger
此方法返回时,包含解码 CRL 中的 CRL 序列号。 该参数未经初始化即被处理。
返回
具有与解码的 CRL 相同的吊销条目的新生成器。
例外
currentCrl
为 null
。
注解
这会加载找到的第一个 X509 CRL
带有标签的格式正确的 PEM。