Edit

Share via


PooledBuffer.BufferSlice.CopyTo Method

Definition

Overloads

CopyTo(PooledBuffer)

Copies the contents of this writer to a pooled buffer.

CopyTo(Span<Byte>)

Copies the contents of this writer to a span.

CopyTo<TBufferWriter>(TBufferWriter)

Copies the contents of this writer to a buffer writer.

CopyTo(PooledBuffer)

Copies the contents of this writer to a pooled buffer.

public void CopyTo (ref Orleans.Serialization.Buffers.PooledBuffer output);
member this.CopyTo : PooledBuffer -> unit
Public Sub CopyTo (ByRef output As PooledBuffer)

Parameters

output
PooledBuffer

Applies to

CopyTo(Span<Byte>)

Copies the contents of this writer to a span.

public int CopyTo (Span<byte> output);
member this.CopyTo : Span<byte> -> int
Public Function CopyTo (output As Span(Of Byte)) As Integer

Parameters

output
Span<Byte>

Returns

Applies to

CopyTo<TBufferWriter>(TBufferWriter)

Copies the contents of this writer to a buffer writer.

public void CopyTo<TBufferWriter> (ref TBufferWriter output) where TBufferWriter : struct;
member this.CopyTo : 'BufferWriter -> unit (requires 'BufferWriter : struct)
Public Sub CopyTo(Of TBufferWriter As Structure) (ByRef output As TBufferWriter)

Type Parameters

TBufferWriter

Parameters

output
TBufferWriter

Applies to