Click or drag to resize

CefInitialize Method (AbstractCefSettings, Boolean, IApp)

Version 75.1.140
Initializes CefSharp with user-provided settings. It's important to note that Initialize/Shutdown MUST be called on your main applicaiton thread (Typically the UI thead). 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: 75.1.140.0
Syntax
public static bool Initialize(
	AbstractCefSettings cefSettings,
	bool performDependencyCheck,
	IApp cefApp
)

Parameters

cefSettings
Type: CefSharpAbstractCefSettings
CefSharp configuration settings.
performDependencyCheck
Type: SystemBoolean
Check that all relevant dependencies avaliable, throws exception if any are missing
cefApp
Type: CefSharpIApp
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