Share via


CertificateRevocationListBuilder.RemoveEntry 方法

定义

重载

RemoveEntry(Byte[])

从吊销列表中删除指定的序列号。

RemoveEntry(ReadOnlySpan<Byte>)

从吊销列表中删除指定的序列号。

RemoveEntry(Byte[])

Source:
CertificateRevocationListBuilder.cs
Source:
CertificateRevocationListBuilder.cs
Source:
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>)

Source:
CertificateRevocationListBuilder.cs
Source:
CertificateRevocationListBuilder.cs
Source:
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

注解

此方法假定列表中多次不存在同一序列号,因此在第一次匹配时停止。

适用于