ICookieVisitorVisit Method |
Version 101.0.180
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: 101.0.180.0 (101.0.180.0)
Syntax bool 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