Edit

ArcBuffer.CopyTo Method

Definition

Overloads

Name Description
CopyTo(ArcBufferWriter)

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(ArcBufferWriter)

Copies the contents of this writer to a pooled buffer.

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

Parameters

Applies to

CopyTo(Span<Byte>)

Copies the contents of this writer to a span.

public readonly 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 readonly void CopyTo<TBufferWriter>(ref TBufferWriter output) 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 output As TBufferWriter)

Type Parameters

TBufferWriter

Parameters

output
TBufferWriter

Applies to