Reader<TInput> 結構
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
提供從二進位輸入剖析資料的功能。
public ref struct Reader<TInput>
type Reader<'Input> = struct
Public Structure Reader(Of TInput)
類型參數
- TInput
基礎緩衝區讀取器類型。
- 繼承
-
Reader<TInput>
屬性
Length |
取得輸入長度。 |
Position |
取得目前的讀取器位置。 |
Session |
取得序列化程式會話。 |
方法
ForkFrom(Int64, Reader<TInput>) |
建立從指定位置開始的新讀取器。 |
ReadByte() |
從輸入讀取位元組。 |
ReadBytes(Span<Byte>) |
|
ReadBytes(UInt32) |
從輸入讀取位元組陣列。 |
ReadBytes<TBufferWriter>(TBufferWriter, Int32) |
將指定的位元組數目讀取至提供的寫入器。 |
ReadInt32() |
Int32從輸入讀取 。 |
ReadInt64() |
Int64從輸入讀取 。 |
ReadUInt32() |
UInt32從輸入讀取 。 |
ReadUInt64() |
UInt64從輸入讀取 。 |
ReadVarUInt32() |
從輸入讀取變數寬度 UInt32 。 |
ReadVarUInt64() |
從輸入讀取變數寬度 UInt64 。 |
ResumeFrom(Int64) |
在分岔讀取器不再使用之後,從指定的位置繼續讀取器。 |
Skip(Int64) |
略過指定的位元組數目。 |
TryReadBytes(Int32, ReadOnlySpan<Byte>) |
嘗試從輸入讀取指定的位元組數目。 |