SKDynamicMemoryWStream.CopyTo Method

Definition

Overloads

CopyTo(SKWStream)

Copies the data from the current stream to the specified stream.

CopyTo(IntPtr)

Copies the data from the current stream to a memory location.

CopyTo(Stream)
CopyTo(Span<Byte>)

CopyTo(SKWStream)

Copies the data from the current stream to the specified stream.

public bool CopyTo (SkiaSharp.SKWStream dst);

Parameters

dst
SKWStream

The stream to copy the data to.

Returns

Applies to

CopyTo(IntPtr)

Copies the data from the current stream to a memory location.

public void CopyTo (IntPtr data);

Parameters

data
IntPtr

The memory location to copy the data to.

Applies to

CopyTo(Stream)

public bool CopyTo (System.IO.Stream dst);

Parameters

dst
Stream

Returns

Applies to

CopyTo(Span<Byte>)

public void CopyTo (Span<byte> data);

Parameters

data
Span<Byte>

Applies to