ICookieManagerVisitUrlCookies Method |
Version 101.0.180
Visit a subset of cookies on the CEF UI thread.
The results are filtered by the given url scheme, host, domain and path.
The returned cookies are ordered by longest path, then by earliest creation date.
Namespace:
CefSharp
Assembly:
CefSharp (in CefSharp.dll) Version: 101.0.180.0 (101.0.180.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
If true HTTP-only cookies will also be included in the results. - visitor
- Type: CefSharpICookieVisitor
A user-provided Cookie Visitor implementation.
Return Value
Type:
BooleanReturns false if cookies cannot be accessed; otherwise, true.
See Also