| ICookieManagerVisitUrlCookies Method  | 
Version 51.0.0
            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: CefSharpAssembly: CefSharp (in CefSharp.dll) Version: 51.0.0.0 (51.0.0.0)
Syntaxbool 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: 
Boolean[Missing <returns> documentation for "M:CefSharp.ICookieManager.VisitUrlCookies(System.String,System.Boolean,CefSharp.ICookieVisitor)"]
See Also