Click or drag to resize

ScriptEngine.Invoke Method

Invokes a global function or procedure.

Namespace: Microsoft.ClearScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.5.0
Syntax
public Object Invoke(
	string funcName,
	params Object[] args
)

Parameters

funcName  String
The name of the global function or procedure to invoke.
args  Object[]
Optional invocation arguments.

Return Value

Object
The return value if a function was invoked, an undefined value otherwise.

Implements

IScriptEngine.Invoke(String, Object[])
See Also