Table of Contents
WebView.RegisterJSExtensionFunction Method 

Register a function that can be called from JavaScript code.

Syntax
 public void RegisterJSExtensionFunction(
   string functionName,
   JSExtInvokeHandler handler
);

Parameters

functionName
The JavaScript function name.
handler
The code to be executed when the function is called.
Remarks

See here for more information about JavaScript extension.

See Also