WebBrowserExtensionsEvaluateScriptAsync Method (IWebBrowser, String, NullableTimeSpan) |
Version 79.1.350
Evaluate some Javascript code in the context of the MainFrame of the ChromiumWebBrowser. The script will be executed
asynchronously and the method returns a Task encapsulating the response from the Javascript This simple helper extension will
encapsulate params in single quotes (unless int, uint, etc)
Namespace:
CefSharp
Assembly:
CefSharp (in CefSharp.dll) Version: 76.1.90.0 (76.1.90.0)
Syntax public static Task<JavascriptResponse> EvaluateScriptAsync(
this IWebBrowser browser,
string script,
Nullable<TimeSpan> timeout = null
)
public:
[ExtensionAttribute]
static Task<JavascriptResponse^>^ EvaluateScriptAsync(
IWebBrowser^ browser,
String^ script,
Nullable<TimeSpan> timeout = nullptr
)
Parameters
- browser
- Type: CefSharpIWebBrowser
The ChromiumWebBrowser instance this method extends. - script
- Type: SystemString
The Javascript code that should be executed. - timeout (Optional)
- Type: SystemNullableTimeSpan
(Optional) The timeout after which the Javascript code execution should be aborted.
Return Value
Type:
TaskJavascriptResponseTaskTResult that can be awaited to perform the script execution.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IWebBrowser. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Exceptions Exception | Condition |
---|
ArgumentOutOfRangeException | Thrown when one or more arguments are outside the required range. |
See Also