Click or drag to resize

ICookieVisitorVisit Method

Version 130.1.90
Method that will be called once for each cookie. This method may never be called if no cookies are found.

Namespace: CefSharp
Assembly: CefSharp (in CefSharp.dll) Version: 129.0.110.0 (129.0.110.0)
Syntax
bool Visit(
	Cookie cookie,
	int count,
	int total,
	ref bool deleteCookie
)

Parameters

cookie  Cookie
cookie
count  Int32
is the 0-based index for the current cookie.
total  Int32
is the total number of cookies.
deleteCookie  Boolean
Set to true to delete the cookie currently being visited.

Return Value

Boolean
Return false to stop visiting cookies otherwise true
See Also