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