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.2.3
Syntaxulong ReadBytes(
ulong offset,
ulong count,
byte[] destination,
ulong destinationIndex
)
Function ReadBytes (
offset As ULong,
count As ULong,
destination As Byte(),
destinationIndex As ULong
) As ULong
unsigned long long ReadBytes(
unsigned long long offset,
unsigned long long count,
array<unsigned char>^ destination,
unsigned long long destinationIndex
)
abstract ReadBytes :
offset : uint64 *
count : uint64 *
destination : byte[] *
destinationIndex : uint64 -> uint64
Parameters
- offset
- Type: SystemUInt64
The offset within the view of the first byte to copy. - count
- Type: SystemUInt64
The maximum number of bytes to copy. - destination
- Type: SystemByte
The byte array into which to copy the bytes. - destinationIndex
- Type: SystemUInt64
The index within destination at which to store the first copied byte.
Return Value
Type:
UInt64The number of bytes copied.
See Also