CertificateRevocationListBuilder.RemoveEntry 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
RemoveEntry(Byte[]) |
從撤銷清單中移除指定的序號。 |
RemoveEntry(ReadOnlySpan<Byte>) |
從撤銷清單中移除指定的序號。 |
RemoveEntry(Byte[])
從撤銷清單中移除指定的序號。
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
。
例外狀況
serialNumber
為 null
。
備註
此方法假設清單中沒有相同的序號多次存在,因此會在第一個相符專案停止。
適用於
RemoveEntry(ReadOnlySpan<Byte>)
從撤銷清單中移除指定的序號。
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
。
備註
此方法假設清單中沒有相同的序號多次存在,因此會在第一個相符專案停止。