Click or drag to resize

IArrayBufferViewReadBytes Method

Copies bytes from the view into the specified byte array.

Namespace: Microsoft.ClearScript.JavaScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax
ulong ReadBytes(
	ulong offset,
	ulong count,
	byte[] destination,
	ulong destinationIndex
)

Parameters

offset  UInt64
The offset within the view of the first byte to copy.
count  UInt64
The maximum number of bytes to copy.
destination  Byte
The byte array into which to copy the bytes.
destinationIndex  UInt64
The index within destination at which to store the first copied byte.

Return Value

UInt64
The number of bytes copied.
See Also