Click or drag to resize

IArrayBufferViewWriteBytes Method

Copies bytes from the specified byte array into the view.

Namespace:  Microsoft.ClearScript.JavaScript
Assembly:  ClearScript.Core (in ClearScript.Core.dll) Version: 7.2.3
Syntax
ulong WriteBytes(
	byte[] source,
	ulong sourceIndex,
	ulong count,
	ulong offset
)

Parameters

source
Type: SystemByte
The byte array from which to copy the bytes.
sourceIndex
Type: SystemUInt64
The index within source of the first byte to copy.
count
Type: SystemUInt64
The maximum number of bytes to copy.
offset
Type: SystemUInt64
The offset within the view at which to store the first copied byte.

Return Value

Type: UInt64
The number of bytes copied.
See Also