WebBrowser.InvokeScript Method (String, String[])
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Executes a scripting function defined in the currently loaded document, and passes the function an array of string parameters.
Assembly: Microsoft.Phone (in Microsoft.Phone.dll)
Parameters
- scriptName
- Type: System.String
The scripting function to execute.
- args
- Type:
System.String
[]
A variable number of strings to pass to the function as parameters.
InvokeScript takes a variable number of arguments that are passed into the scripting function designated by scriptName. The following code example passes the arguments "one", "two", and "three" to the scripting function "myFunction": args.
webBrowser.InvokeScript("myFunction", "one", "two", "three");
Script is turned off in the WebBrowser control by default. Set the IsScriptEnabled property to true if you want to enable scripting in your control.