CertificateRevocationListBuilder.Load メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
Load(Byte[], BigInteger) |
指定した証明書失効リスト (CRL) をデコードし、デコードされた CRL からすべての失効エントリを含む を生成 CertificateRevocationListBuilder します。 |
Load(ReadOnlySpan<Byte>, BigInteger, Int32) |
指定した証明書失効リスト (CRL) をデコードし、デコードされた CRL からすべての失効エントリを含む を生成 CertificateRevocationListBuilder します。 |
Load(Byte[], BigInteger)
指定した証明書失効リスト (CRL) をデコードし、デコードされた CRL からすべての失効エントリを含む を生成 CertificateRevocationListBuilder します。
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
です。
currentCrl
デコードできませんでした。
または
currentCrl
は正常にデコードされましたが、デコードには配列に指定されたすべてのバイトが必要なわけではありませんでした。
適用対象
Load(ReadOnlySpan<Byte>, BigInteger, Int32)
指定した証明書失効リスト (CRL) をデコードし、デコードされた CRL からすべての失効エントリを含む を生成 CertificateRevocationListBuilder します。
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
デコードできませんでした。
適用対象
.NET