ArrayBuffer Class
ArrayBuffer class
The ArrayBuffer object is used to represent a generic, fixed-length raw binary data buffer.
public class ArrayBuffer : DOMObject
Constructors
Name | Description |
---|
ArrayBuffer(byte[]) | Initializes a new instance of the ArrayBuffer class. |
ArrayBuffer(int) | Initializes a new instance of the ArrayBuffer class. |
Properties
Name | Description |
---|
ByteLength { get; } | The byteLength accessor property represents the length of an ArrayBuffer in bytes. |
Item { get; set; } | Gets or sets the Byte at the specified index. |
Methods
See Also