BinaryStreamPointerBaseCopy Method

Copies a block of data from one position in the stream to another position within the same stream.

Definition

Namespace: SnapDB.IO
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public override void Copy(
	long source,
	long destination,
	int length
)

Parameters

source  Int64
The starting position in the stream from which data will be copied.
destination  Int64
The position in the stream where the data will be copied to.
length  Int32
The number of bytes to copy from the source position to the destination position.

Exceptions

ArgumentExceptionThrown if source, destination, or length is less than zero.

See Also