Click or drag to resize

CefCookieManagerCreate Method

Creates a new cookie manager. If |path| is empty data will be stored in memory only. Otherwise, data will be stored at the specified |path|. To persist session cookies (cookies without an expiry date or validity interval) set |persist_session_cookies| to true. Session cookies are generally intended to be transient and most Web browsers do not persist them. If |callback| is non-NULL it will be executed asnychronously on the IO thread after the manager's storage has been initialized.

Namespace: Internal.Xilium.CefGlue
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public static CefCookieManager Create(
	string path,
	bool persistSessionCookies,
	CefCompletionCallback callback
)

Parameters

path  String
 
persistSessionCookies  Boolean
 
callback  CefCompletionCallback
 

Return Value

CefCookieManager
See Also