Click or drag to resize

V8GlobalFlags Enumeration

Defines global V8 options.

Namespace: Microsoft.ClearScript.V8
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.4.5
Syntax
[FlagsAttribute]
public enum V8GlobalFlags
Members
Member nameValueDescription
None0 Specifies that no options are selected.
EnableTopLevelAwait1Obsolete.
Specifies that Top-Level Await is to be enabled.
DisableJITCompilation2 Specifies that just-in-time compilation is to be disabled.
DisableBackgroundWork4 Specifies that background work is to be disabled. By default, V8 performs various tasks in the background, accelerating garbage collection, just-in-time compilation, and other activities. Use this option if you encounter issues related to V8's background work.
See Also