BinaryStreamPointerBaseCopy Method
Copies a block of data from one position in the stream to another position within the same stream.
Namespace: SnapDB.IOAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public override void Copy(
long source,
long destination,
int length
)
Public Overrides Sub Copy (
source As Long,
destination As Long,
length As Integer
)
public:
virtual void Copy(
long long source,
long long destination,
int length
) override
function Copy(source, destination, 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.
| ArgumentException | Thrown if source, destination, or length is less than zero. |