WebBrowserExtensionsEx Class (original) (raw)

Namespace: CefSharp
Assembly: CefSharp.Core (in CefSharp.Core.dll) Version: 118.6.80.0

The WebBrowserExtensionsEx type exposes the following members.

| | Name | Description | | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | Public methodStatic member | DownloadUrl | Downloads the specified url and calls completeHandler when the download is complete. Makes a GET Request. | | Public methodStatic member | DownloadUrlAsync | Downloads the specified url as a byte. Makes a GET Request. | | Public methodStatic member | EvaluateScriptAsyncT(IBrowser, String, NullableTimeSpan) | 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 | | Public methodStatic member | EvaluateScriptAsyncT(IChromiumWebBrowserBase, String, NullableTimeSpan) | Evaluate Javascript in the context of this Browsers Main Frame. The script will be executed asynchronously and the method returns a Task encapsulating the response from the Javascript | | Public methodStatic member | EvaluateScriptAsyncT(IFrame, String, NullableTimeSpan) | Evaluate javascript code in the context of the frame. The script will be executed asynchronously and the method returns a Task that can be awaited to obtain the result. | | Public methodStatic member | GetVisibleNavigationEntryAsync | Retrieve the current NavigationEntry. Contains information likeHttpStatusCode and SslStatus | | Public methodStatic member | ToggleAudioMute | Toggles audio mute for the current browser. If the browser is null or has been disposed then this command will be a no-op. |

Top