ChromiumWebBrowser Constructor (String, BrowserSettings, IRequestContext, Boolean) |
Version 83.4.2
Create a new OffScreen Chromium Browser. If you use
LegacyBindingEnabled = true then you must
set
automaticallyCreateBrowser to false and call
CreateBrowser(IWindowInfo, BrowserSettings) after the objects are registered.
Namespace:
CefSharp.OffScreen
Assembly:
CefSharp.OffScreen (in CefSharp.OffScreen.dll) Version: 83.4.2.0 (83.4.2.0)
Syntax public ChromiumWebBrowser(
string address = "",
BrowserSettings browserSettings = null,
IRequestContext requestContext = null,
bool automaticallyCreateBrowser = true
)
public:
ChromiumWebBrowser(
String^ address = L"",
BrowserSettings^ browserSettings = nullptr,
IRequestContext^ requestContext = nullptr,
bool automaticallyCreateBrowser = true
)
Parameters
- address (Optional)
- Type: SystemString
Initial address (url) to load - browserSettings (Optional)
- Type: CefSharpBrowserSettings
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
Exceptions Exception | Condition |
---|
InvalidOperationException | Cef::Initialize() failed |
See Also