Click or drag to resize

ICookieManager.SetCookie Method

Version 75.1.140
Sets a cookie given a valid URL and explicit user-provided cookie attributes. This function expects each attribute to be well-formed. It will check for disallowed characters (e.g. the ';' character is disallowed within the cookie value attribute) and will return false without setting the cookie if such characters are found. This method will be executed on the CEF UI thread in an async fashion, to be notified upon completion implement ISetCookieCallback and pass in as callback

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 75.1.140.0 (75.1.140.0)
Syntax
bool SetCookie(
	string url,
	Cookie cookie,
	ISetCookieCallback callback = null
)

Parameters

url
Type: System.String
The cookie URL
cookie
Type: CefSharp.Cookie
The cookie
callback (Optional)
Type: CefSharp.ISetCookieCallback
If non-NULL it will be executed asnychronously on the CEF UI thread after the cookie has been set.

Return Value

Type: Boolean
returns false if the cookie cannot be set (e.g. if illegal charecters such as ';' are used); otherwise true.
See Also