V8RuntimeConstraintsMaxArrayBufferAllocation Property |
Gets or sets the maximum amount of
ArrayBuffer
memory the runtime may allocate.
Namespace: Microsoft.ClearScript.V8Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.4.5
Syntax public ulong MaxArrayBufferAllocation { get; set; }
Public Property MaxArrayBufferAllocation As ULong
Get
Set
public:
property unsigned long long MaxArrayBufferAllocation {
unsigned long long get ();
void set (unsigned long long value);
}
member MaxArrayBufferAllocation : uint64 with get, set
Property Value
UInt64Remarks
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