ScriptObjectInvokeMethod Method |
Invokes a script object method.
Namespace:
Microsoft.ClearScript
Assembly:
ClearScript.Core (in ClearScript.Core.dll) Version: 7.3.1
Syntaxpublic abstract Object InvokeMethod(
string name,
params Object[] args
)
Public MustOverride Function InvokeMethod (
name As String,
ParamArray args As Object()
) As Object
public:
virtual Object^ InvokeMethod(
String^ name,
... array<Object^>^ args
) abstract
abstract InvokeMethod :
name : string *
args : Object[] -> Object
Parameters
- name
- Type: SystemString
The name of the method to invoke. - args
- Type: SystemObject
Optional arguments for method invocation.
Return Value
Type:
ObjectThe invocation result value.
See Also