共用方式為


Reader<TInput>.ReadBytes 方法

定義

多載

ReadBytes(Span<Byte>)

destination填入從輸入讀取的位元組。

ReadBytes(UInt32)

從輸入讀取位元組陣列。

ReadBytes<TBufferWriter>(TBufferWriter, Int32)

將指定的位元組數目讀取至提供的寫入器。

ReadBytes(Span<Byte>)

destination填入從輸入讀取的位元組。

public void ReadBytes (scoped Span<byte> destination);
member this.ReadBytes : Span<byte> -> unit
Public Sub ReadBytes (destination As Span(Of Byte))

參數

destination
Span<Byte>

目的地。

適用於

ReadBytes(UInt32)

從輸入讀取位元組陣列。

public byte[] ReadBytes (uint count);
member this.ReadBytes : uint32 -> byte[]
Public Function ReadBytes (count As UInteger) As Byte()

參數

count
UInt32

要讀取的陣列長度。

傳回

Byte[]

已讀取的陣列。

適用於

ReadBytes<TBufferWriter>(TBufferWriter, Int32)

將指定的位元組數目讀取至提供的寫入器。

public void ReadBytes<TBufferWriter> (scoped ref TBufferWriter writer, int count) where TBufferWriter : System.Buffers.IBufferWriter<byte>;
member this.ReadBytes : 'BufferWriter * int -> unit (requires 'BufferWriter :> System.Buffers.IBufferWriter<byte>)
Public Sub ReadBytes(Of TBufferWriter As IBufferWriter(Of Byte)) (ByRef writer As TBufferWriter, count As Integer)

類型參數

TBufferWriter

參數

writer
TBufferWriter
count
Int32

適用於