V8ScriptEngineGlobal Property |
Allows the host to access script resources.
Namespace:
Microsoft.ClearScript.V8
Assembly:
ClearScript.V8 (in ClearScript.V8.dll) Version: 7.2.3
Syntaxpublic override ScriptObject Global { get; }
Public Overrides ReadOnly Property Global As ScriptObject
Get
public:
virtual property ScriptObject^ Global {
ScriptObject^ get () override;
}
abstract Global : ScriptObject with get
override Global : ScriptObject with get
Property Value
Type:
ScriptObject
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 perform better than
dynamic access via
Script.
See Also