| ICookieVisitorVisit Method  | 
Version 67.0.0 
            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: 67.0.0.0 (67.0.0.0)
 Syntax
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
See Also