Click or drag to resize

V8RuntimeMaxStackUsage Property

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

Namespace: Microsoft.ClearScript.V8
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.4.5
Syntax
public UIntPtr MaxStackUsage { 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