ScriptEngineCurrent Property |
Gets the script engine that is invoking a host member on the current thread.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public static ScriptEngine Current { get; }
Public Shared ReadOnly Property Current As ScriptEngine
Get
public:
static property ScriptEngine^ Current {
ScriptEngine^ get ();
}
static member Current : ScriptEngine with get
Property Value
ScriptEngineRemarks
If multiple script engines are invoking host members on the current thread, this
property gets the one responsible for the most deeply nested invocation. If no script
engines are invoking host members on the current thread, this property returns
null.
See Also