Click or drag to resize

Cef.Initialize Method (CefSettingsBase, Boolean, IApp)

Version 111.2.70
Initializes CefSharp with user-provided settings. It's important to note that Initialize/Shutdown MUST be called on your main application thread (typically the UI thread). If you call them on different threads, your application will hang. See the documentation for Cef.Shutdown() for more details.

Namespace:  CefSharp
Assembly:  CefSharp.Core (in CefSharp.Core.dll) Version: 111.2.70.0
Syntax
public static bool Initialize(
	CefSettingsBase settings,
	bool performDependencyCheck,
	IApp cefApp
)

Parameters

settings
Type: CefSharp.CefSettingsBase
CefSharp configuration settings.
performDependencyCheck
Type: System.Boolean
Check that all relevant dependencies available, throws exception if any are missing
cefApp
Type: CefSharp.IApp
Implement this interface to provide handler implementations. Null if you don't wish to handle these events

Return Value

Type: Boolean
true if successful; otherwise, false.
See Also