Table of Contents
WebView.InvokeFunction Method 

Invoke a JavaScript function.

Syntax
 public object InvokeFunction(
   string functionName,
   params object[] args
);

Parameters

functionName
The name of the function. See remark section for details.
args
Function arguments.

Return Value

The return value of the function.

Remarks

functionName can be a JavaScript expression. Internally the browser engine uses window[functionName] to resolve the function. The JavaScript window object is used as "this" pointer for the function.

See Also