Click or drag to resize

CefGetGlobalCookieManager Method (ICompletionCallback)

Version 86.0.240
Returns the global cookie manager. By default data will be stored at CefSettings.CachePath if specified or in memory otherwise. Using this method is equivalent to calling Cef.GetGlobalRequestContext().GetCookieManager() The cookie managers storage is created in an async fashion, whilst this method may return a cookie manager instance, there may be a short delay before you can Get/Write cookies. To be sure the cookie manager has been initialized use one of the following - Access the ICookieManager after ICompletionCallback.OnComplete has been called - Access the ICookieManager instance in IBrowserProcessHandler.OnContextInitialized. - Use the ChromiumWebBrowser BrowserInitialized (OffScreen) or IsBrowserInitializedChanged (WinForms/WPF) events.

Namespace:  CefSharp
Assembly:  CefSharp.Core (in CefSharp.Core.dll) Version: 86.0.240.0
Syntax
public static ICookieManager GetGlobalCookieManager(
	ICompletionCallback callback
)

Parameters

callback
Type: CefSharpICompletionCallback
If non-NULL it will be executed asnychronously on the CEF UI thread after the manager's storage has been initialized.

Return Value

Type: ICookieManager
A the global cookie manager or null if the RequestContext has not yet been initialized.
See Also