PooledBuffer.Write Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Write(ReadOnlySequence<Byte>) |
Writes the provided sequence to this buffer. |
Write(ReadOnlySpan<Byte>) |
Writes the provided value to this buffer. |
Write(ReadOnlySequence<Byte>)
Writes the provided sequence to this buffer.
public void Write (System.Buffers.ReadOnlySequence<byte> input);
member this.Write : System.Buffers.ReadOnlySequence<byte> -> unit
Public Sub Write (input As ReadOnlySequence(Of Byte))
Parameters
- input
- ReadOnlySequence<Byte>
The data to write.
Applies to
Write(ReadOnlySpan<Byte>)
Writes the provided value to this buffer.
public void Write (ReadOnlySpan<byte> value);
member this.Write : ReadOnlySpan<byte> -> unit
Public Sub Write (value As ReadOnlySpan(Of Byte))
Parameters
- value
- ReadOnlySpan<Byte>
The data to write.