CborReader.TryReadByteString(Span<Byte>, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
以位元組字串 (主要類型 2) 形式讀取下一個資料項目。
public:
bool TryReadByteString(Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public bool TryReadByteString (Span<byte> destination, out int bytesWritten);
member this.TryReadByteString : Span<byte> * int -> bool
Public Function TryReadByteString (destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean
參數
- bytesWritten
- Int32
成功時,會收到寫入至 destination
的位元組數。
傳回
如果 destination
的長度足以接收值且會推進讀取器,則為 true
,否則為 false
。
例外狀況
下一個數據項沒有正確的主要類型。
備註
方法接受無限長度字串,它會串連至單一字串。