Edit

Share via


PooledBuffer.CopyTo Method

Definition

Overloads

CopyTo(Span<Byte>)

Copies the contents of this writer to a span.

CopyTo<TBufferWriter>(Writer<TBufferWriter>)

Copies the contents of this writer to another writer.

CopyTo<TBufferWriter>(TBufferWriter)

Copies the contents of this writer to another writer.

CopyTo(Span<Byte>)

Copies the contents of this writer to a span.

public readonly void CopyTo (Span<byte> output);
member this.CopyTo : Span<byte> -> unit
Public Sub CopyTo (output As Span(Of Byte))

Parameters

output
Span<Byte>

Applies to

CopyTo<TBufferWriter>(Writer<TBufferWriter>)

Copies the contents of this writer to another writer.

public readonly void CopyTo<TBufferWriter> (ref Orleans.Serialization.Buffers.Writer<TBufferWriter> writer) where TBufferWriter : System.Buffers.IBufferWriter<byte>;
member this.CopyTo : Writer -> unit (requires 'BufferWriter :> System.Buffers.IBufferWriter<byte>)
Public Sub CopyTo(Of TBufferWriter As IBufferWriter(Of Byte)) (ByRef writer As Writer(Of TBufferWriter))

Type Parameters

TBufferWriter

Parameters

Applies to

CopyTo<TBufferWriter>(TBufferWriter)

Copies the contents of this writer to another writer.

public readonly void CopyTo<TBufferWriter> (ref TBufferWriter writer) where TBufferWriter : System.Buffers.IBufferWriter<byte>;
member this.CopyTo : 'BufferWriter -> unit (requires 'BufferWriter :> System.Buffers.IBufferWriter<byte>)
Public Sub CopyTo(Of TBufferWriter As IBufferWriter(Of Byte)) (ByRef writer As TBufferWriter)

Type Parameters

TBufferWriter

Parameters

writer
TBufferWriter

Applies to