ICookieManagerVisitUrlCookiesAsync Method |
Version 55.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: 55.0.0.0 (55.0.0.0)
Syntax Task<List<Cookie>> VisitUrlCookiesAsync(
string url,
bool includeHttpOnly
)
Task<List<Cookie^>^>^ VisitUrlCookiesAsync(
String^ url,
bool includeHttpOnly
)
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.
Return Value
Type:
TaskListCookie[Missing <returns> documentation for "M:CefSharp.ICookieManager.VisitUrlCookiesAsync(System.String,System.Boolean)"]
See Also