Click or drag to resize

V8ScriptEngineMaxRuntimeStackUsage Property

Gets or sets the maximum amount by which the V8 runtime is permitted to grow the stack during script execution.

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

Property Value

UIntPtr
Remarks

This property is specified in bytes. When it is set to the default value, no stack usage limit is enforced, and scripts with unchecked recursion or other excessive stack usage can cause unrecoverable errors and process termination.

Note that the V8 runtime does not monitor stack usage while a host call is in progress. Monitoring is resumed when control returns to the runtime.

See Also