ICookieManager.VisitUrlCookies Method |
Version 81.3.100
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: 81.3.100.0 (81.3.100.0)
Syntax bool VisitUrlCookies(
string url,
bool includeHttpOnly,
ICookieVisitor visitor
)
bool VisitUrlCookies(
String^ url,
bool includeHttpOnly,
ICookieVisitor^ visitor
)
Parameters
- url
- Type: System.String
The URL to use for filtering a subset of the cookies available. - includeHttpOnly
- Type: System.Boolean
If true HTTP-only cookies will also be included in the results. - visitor
- Type: CefSharp.ICookieVisitor
A user-provided Cookie Visitor implementation.
Return Value
Type:
BooleanReturns false if cookies cannot be accessed; otherwise, true.
See Also