ICookieVisitorVisit Method  | 
Version 118.6.80 
            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: 118.6.80.0 (118.6.80.0)
Syntaxbool Visit(
	Cookie cookie,
	int count,
	int total,
	ref bool deleteCookie
)
bool Visit(
	Cookie^ cookie, 
	int count, 
	int total, 
	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: 
BooleanReturn false to stop visiting cookies otherwise true
See Also