Click or drag to resize

WebBrowserExtensions.LoadUrlAsync Method

Version 94.4.20
Load the url in the main frame of the browser

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
public static Task<LoadUrlAsyncResponse> LoadUrlAsync(
	IWebBrowser chromiumWebBrowser,
	string url = null,
	SynchronizationContext ctx = null
)

Parameters

chromiumWebBrowser
Type: CefSharp.IWebBrowser
ChromiumWebBrowser instance (cannot be null)
url (Optional)
Type: System.String
url to load
ctx (Optional)
Type: System.Threading.SynchronizationContext
SynchronizationContext to execute the continuation on, if null then the ThreadPool will be used.

Return Value

Type: Task<LoadUrlAsyncResponse>
See LoadUrlAsync(String, SynchronizationContext) for details
See Also