Click or drag to resize

V8ScriptEngine.Global Property

Allows the host to access script resources.

Namespace: Microsoft.ClearScript.V8
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntax
public override ScriptObject Global { get; }

Property Value

ScriptObject

Implements

IScriptEngine.Global
IScriptEngine.Global
Remarks
The value of this property is an object that is bound to the script engine's root namespace. It allows you to access global script resources via the ScriptObject class interface. Doing so is likely to outperform dynamic access via Script.
See Also