Edit

Share via


MemoryStreamBufferWriter Struct

Definition

An implementation of IBufferWriter<T> which writes to a MemoryStream.

public readonly struct MemoryStreamBufferWriter : System.Buffers.IBufferWriter<byte>
type MemoryStreamBufferWriter = struct
    interface IBufferWriter<byte>
Public Structure MemoryStreamBufferWriter
Implements IBufferWriter(Of Byte)
Inheritance
MemoryStreamBufferWriter
Implements

Constructors

MemoryStreamBufferWriter(MemoryStream)

Initializes a new instance of the MemoryStreamBufferWriter struct.

Methods

Advance(Int32)

Notifies the IBufferWriter<T> that count data items were written to the output Span<T> or Memory<T>.

GetMemory(Int32)

Returns a Memory<T> to write to that is at least the requested size (specified by sizeHint).

GetSpan(Int32)

Returns a Span<T> to write to that is at least the requested size (specified by sizeHint).

Applies to