V8RuntimeFlags Enumeration |
Defines options for initializing a new V8 runtime instance.
Namespace: Microsoft.ClearScript.V8Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.4.5
Syntax [FlagsAttribute]
public enum V8RuntimeFlags
<FlagsAttribute>
Public Enumeration V8RuntimeFlags
[FlagsAttribute]
public enum class V8RuntimeFlags
[<FlagsAttribute>]
type V8RuntimeFlags
Members Member name | Value | Description |
---|
None | 0 |
Specifies that no options are selected.
|
EnableDebugging | 1 |
Specifies that script debugging features are to be enabled.
|
EnableRemoteDebugging | 2 |
Specifies that remote script debugging is to be enabled. This option is ignored if
EnableDebugging is not specified.
|
EnableDynamicModuleImports | 4 |
Specifies that
dynamic module imports
are to be enabled. This is an experimental feature and may be removed in a future release.
|
See Also