Click or drag to resize

ChromiumWebBrowser Constructor (HtmlString, IBrowserSettings, IRequestContext, Boolean, ActionIBrowser)

Version 91.1.160
Create a new OffScreen Chromium Browser. If you use LegacyBindingEnabled = true then you must set automaticallyCreateBrowser to false and call CreateBrowser(IWindowInfo, IBrowserSettings) after the objects are registered. The underlying Chromium Embedded Framework(CEF) Browser is created asynchronouly, to subscribe to the BrowserInitialized event it is recommended that you set automaticallyCreateBrowser to false, subscribe to the event and then call CreateBrowser(IWindowInfo, IBrowserSettings) to ensure you are subscribe to the event before it's fired (Issue https://github.com/cefsharp/CefSharp/issues/3552).

Namespace:  CefSharp.OffScreen
Assembly:  CefSharp.OffScreen (in CefSharp.OffScreen.dll) Version: 91.1.160.0 (91.1.160.0)
Syntax
public ChromiumWebBrowser(
	HtmlString html,
	IBrowserSettings browserSettings = null,
	IRequestContext requestContext = null,
	bool automaticallyCreateBrowser = true,
	Action<IBrowser> onAfterBrowserCreated = null
)

Parameters

html
Type: CefSharp.WebHtmlString
html string to be initially loaded in the browser.
browserSettings (Optional)
Type: CefSharpIBrowserSettings
The browser settings to use. If null, the default settings are used.
requestContext (Optional)
Type: CefSharpIRequestContext
See RequestContext for more details. Defaults to null
automaticallyCreateBrowser (Optional)
Type: SystemBoolean
automatically create the underlying Browser
onAfterBrowserCreated (Optional)
Type: SystemActionIBrowser
Use as an alternative to the BrowserInitialized event. If the underlying Chromium Embedded Framework (CEF) browser is created successfully, this action is guranteed to be called after the browser created where as the BrowserInitialized event may be called before you have a chance to subscribe to the event as the CEF Browser is created async. (Issue https://github.com/cefsharp/CefSharp/issues/3552).
Exceptions
ExceptionCondition
InvalidOperationExceptionCef::Initialize() failed
See Also