Click or drag to resize

V8RuntimeConstraintsMaxArrayBufferAllocation Property

Gets or sets the maximum amount of ArrayBuffer memory the runtime may allocate.

Namespace: Microsoft.ClearScript.V8
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.4.5
Syntax
public ulong MaxArrayBufferAllocation { get; set; }

Property Value

UInt64
Remarks
This property is specified in bytes. ArrayBuffer memory is allocated outside the runtime's heap and released when its garbage collector reclaims the corresponding JavaScript ArrayBuffer object. Leave this property at its default value to enforce no limit.
See Also