次の方法で共有


CertificateRevocationListBuilder.RemoveEntry メソッド

定義

オーバーロード

RemoveEntry(Byte[])

失効リストから指定したシリアル番号を削除します。

RemoveEntry(ReadOnlySpan<Byte>)

失効リストから指定したシリアル番号を削除します。

RemoveEntry(Byte[])

ソース:
CertificateRevocationListBuilder.cs
ソース:
CertificateRevocationListBuilder.cs
ソース:
CertificateRevocationListBuilder.cs

失効リストから指定したシリアル番号を削除します。

public:
 bool RemoveEntry(cli::array <System::Byte> ^ serialNumber);
public bool RemoveEntry (byte[] serialNumber);
member this.RemoveEntry : byte[] -> bool
Public Function RemoveEntry (serialNumber As Byte()) As Boolean

パラメーター

serialNumber
Byte[]

削除するシリアル番号。

戻り値

true シリアル番号が一覧で見つかり、削除された場合は 。それ以外の場合は false

例外

serialNumbernull です。

注釈

このメソッドは、同じシリアル番号がリストに 2 回以上存在しないことを前提としているため、最初の一致で停止します。

適用対象

RemoveEntry(ReadOnlySpan<Byte>)

ソース:
CertificateRevocationListBuilder.cs
ソース:
CertificateRevocationListBuilder.cs
ソース:
CertificateRevocationListBuilder.cs

失効リストから指定したシリアル番号を削除します。

public:
 bool RemoveEntry(ReadOnlySpan<System::Byte> serialNumber);
public bool RemoveEntry (ReadOnlySpan<byte> serialNumber);
member this.RemoveEntry : ReadOnlySpan<byte> -> bool
Public Function RemoveEntry (serialNumber As ReadOnlySpan(Of Byte)) As Boolean

パラメーター

serialNumber
ReadOnlySpan<Byte>

削除するシリアル番号。

戻り値

true シリアル番号が一覧で見つかり、削除された場合は 。それ以外の場合は false

注釈

このメソッドは、同じシリアル番号がリストに 2 回以上存在しないことを前提としているため、最初の一致で停止します。

適用対象