CefCookieManager SetCookie Method Xilium.CefGlue

[This is preliminary documentation and is subject to change.]

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 must be called on the IO thread.

Namespace: Xilium.CefGlue
Assembly: Xilium.CefGlue (in Xilium.CefGlue.dll) Version: 3.2272.2035.0 (3.2272.2035.0)
Syntax

public bool SetCookie(
	string url,
	CefCookie cookie
)

Parameters

url
Type: OnlineSystem String

[Missing <param name="url"/> documentation for "M:Xilium.CefGlue.CefCookieManager.SetCookie(System.String,Xilium.CefGlue.CefCookie)"]

cookie
Type: Xilium.CefGlue CefCookie

[Missing <param name="cookie"/> documentation for "M:Xilium.CefGlue.CefCookieManager.SetCookie(System.String,Xilium.CefGlue.CefCookie)"]

Return Value

Type: OnlineBoolean

[Missing <returns> documentation for "M:Xilium.CefGlue.CefCookieManager.SetCookie(System.String,Xilium.CefGlue.CefCookie)"]

See Also