V8RuntimeConstraintsMaxExecutableSize Property |
Note: This API is now obsolete.
Gets or sets the maximum size of the executable code heap in
MiB.
Namespace: Microsoft.ClearScript.V8Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.4.5
Syntax [ObsoleteAttribute("Executable code now occupies the old object heap. See MaxOldSpaceSize.")]
public int MaxExecutableSize { get; set; }
<ObsoleteAttribute("Executable code now occupies the old object heap. See MaxOldSpaceSize.")>
Public Property MaxExecutableSize As Integer
Get
Set
public:
[ObsoleteAttribute(L"Executable code now occupies the old object heap. See MaxOldSpaceSize.")]
property int MaxExecutableSize {
int get ();
void set (int value);
}
[<ObsoleteAttribute("Executable code now occupies the old object heap. See MaxOldSpaceSize.")>]
member MaxExecutableSize : int with get, set
Property Value
Int32Remarks
For maximum compatibility with hosts that predate an inadvertent breaking change in
ClearScript 5.4.1, values greater than 1048576
(1
TiB) are assumed to be in
bytes rather than MiB. For example, the values 16 and 16777216 both specify a limit
of 16 MiB.
See Also