Click or drag to resize

IFrame.EvaluateScriptAsync Method

Version 81.3.100
Execute some Javascript code in the context of this WebBrowser, and return the result of the evaluation in an Async fashion

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 81.3.100.0 (81.3.100.0)
Syntax
Task<JavascriptResponse> EvaluateScriptAsync(
	string script,
	string scriptUrl = "about:blank",
	int startLine = 1,
	Nullable<TimeSpan> timeout = null
)

Parameters

script
Type: System.String
The Javascript code that should be executed.
scriptUrl (Optional)
Type: System.String
is the URL where the script in question can be found, if any.
startLine (Optional)
Type: System.Int32
is the base line number to use for error reporting.
timeout (Optional)
Type: System.Nullable<TimeSpan>
The timeout after which the Javascript code execution should be aborted.

Return Value

Type: Task<JavascriptResponse>
A Task that can be awaited to perform the script execution
See Also