Click or drag to resize

ICookieVisitorVisit Method

Version 86.0.240
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: 86.0.240.0 (86.0.240.0)
Syntax
bool Visit(
	Cookie cookie,
	int count,
	int total,
	ref bool deleteCookie
)

Parameters

cookie
Type: CefSharpCookie
cookie
count
Type: SystemInt32
is the 0-based index for the current cookie.
total
Type: SystemInt32
is the total number of cookies.
deleteCookie
Type: SystemBoolean
Set to true to delete the cookie currently being visited.

Return Value

Type: Boolean
Return false to stop visiting cookies otherwise true
See Also