V8SettingsDefaultStackSize Property |
Gets or sets the default size of V8's stack region in
KiB.
Namespace: Microsoft.ClearScript.V8Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.1.1
Syntaxpublic static uint DefaultStackSize { get; set; }Public Shared Property DefaultStackSize As UInteger
Get
Set
public:
static property unsigned int DefaultStackSize {
unsigned int get ();
void set (unsigned int value);
}static member DefaultStackSize : uint32 with get, set
Property Value
UInt32
Remarks
To override the default size of the stack region, set this property before instantiating
V8ScriptEngine or
V8Runtime for the first time. Subsequent
reassignment will have no effect.
See Also