Click or drag to resize

ICookieManagerVisitUrlCookies Method

Version 86.0.240
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: 86.0.240.0 (86.0.240.0)
Syntax
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: Boolean
Returns false if cookies cannot be accessed; otherwise, true.
See Also