共用方式為


AsnReader.TryReadPrimitiveBitString 方法

定義

讀取下一個值做為具有所指定標籤的位元字串,同時透過原始資料傳回內容做為 ReadOnlyMemory<T>

public bool TryReadPrimitiveBitString (out int unusedBitCount, out ReadOnlyMemory<byte> value, System.Formats.Asn1.Asn1Tag? expectedTag = default);
member this.TryReadPrimitiveBitString : int * ReadOnlyMemory * Nullable<System.Formats.Asn1.Asn1Tag> -> bool
Public Function TryReadPrimitiveBitString (ByRef unusedBitCount As Integer, ByRef value As ReadOnlyMemory(Of Byte), Optional expectedTag As Nullable(Of Asn1Tag) = Nothing) As Boolean

參數

unusedBitCount
Int32

成功時,會收到最後一個位元組中被寫入器回報為「未使用」的位元數。

value
ReadOnlyMemory<Byte>

成功時,會透過原始資料收到對應於位元字串值的 ReadOnlyMemory<T>

expectedTag
Nullable<Asn1Tag>

要在讀取之前檢查的標籤,或預設標籤的 null (Universal 1)。

傳回

如果位元字串值具有基本編碼,則為 true 並推進讀取器;如果具有結構化編碼,則為 false 且不會推進讀取器。

例外狀況

下一個值沒有正確的標記。

-或-

長度編碼在目前的編碼規則下無效。

-或-

內容在目前的編碼規則下無效。

expectedTagTagClassUniversal,但 expectedTagTagValue 對方法而言不正確。

適用於