InvokeScriptMethod Method

WebKit .NET

[This is preliminary documentation and is subject to change.]

Invokes a method in the scripting environment.

Namespace:  WebKit.DOM
Assembly:  WebKitBrowser (in WebKitBrowser.dll) Version: 0.5.0.0 (0.5.0.0)

Syntax

C#
public Object InvokeScriptMethod(
	string Method,
	params Object[] args
)
Visual Basic (Declaration)
Public Function InvokeScriptMethod ( _
	Method As String, _
	ParamArray args As Object() _
) As Object
Visual C++
public:
Object^ InvokeScriptMethod(
	String^ Method, 
	... array<Object^>^ args
)

Parameters

Method
Type: System..::.String
The name of the method to invoke.
args
Type: array< System..::.Object >[]()[]
Arguments to pass to the method.

Return Value

The return value of the method.

See Also