共用方式為


AsnReader.TryReadOctetString 方法

定義

讀取下一個值做為具有所指定標籤的八位元字串,同時將值複製到提供的目的地緩衝區。

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

參數

destination
Span<Byte>

要在其中寫入的緩衝區。

bytesWritten
Int32

成功時,會收到寫入至 destination 的位元組數。

expectedTag
Nullable<Asn1Tag>

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

傳回

如果 destination 長到足以接收值,則為 true 且會推進讀取器,否則為 false 且不會推進讀取器。

例外狀況

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

-或-

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

-或-

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

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

適用於