共用方式為


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

備註

此方法假設清單中沒有相同的序號多次存在,因此會在第一個相符專案停止。

適用於

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

備註

此方法假設清單中沒有相同的序號多次存在,因此會在第一個相符專案停止。

適用於