ICookieManagerVisitUrlCookies Method |
Version 75.1.140
Visits a subset of the cookies. The results are filtered by the given url scheme, host, domain and path.
If includeHttpOnly is true, HTTP-only cookies will also be included in the results. The returned cookies
are sorted by longest path, then by earliest creation date.
Namespace:
CefSharp
Assembly:
CefSharp (in CefSharp.dll) Version: 75.1.140.0 (75.1.140.0)
Syntax bool VisitUrlCookies(
string url,
bool includeHttpOnly,
ICookieVisitor visitor
)
bool VisitUrlCookies(
String^ url,
bool includeHttpOnly,
ICookieVisitor^ visitor
)
Parameters
- url
- Type: SystemString
The URL to use for filtering a subset of the cookies available. - includeHttpOnly
- Type: SystemBoolean
A flag that determines whether HTTP-only cookies will be shown in results. - visitor
- Type: CefSharpICookieVisitor
A user-provided Cookie Visitor implementation.
Return Value
Type:
BooleanReturns false if cookies cannot be accessed; otherwise, true.
See Also