ICookieManager Interface |
Namespace: CefSharp
The ICookieManager type exposes the following members.
Name | Description | |
---|---|---|
IsDisposed |
Returns true if disposed
|
Name | Description | |
---|---|---|
DeleteCookies |
Deletes all cookies that matches all the provided parameters. If both url and name are empty, all cookies will be deleted.
Cookies can alternately be deleted using the Visit*Cookies() methods.
This method will be executed on the CEF UI thread in an async fashion, to be notified upon completion implement IDeleteCookiesCallback
and pass in as callback | |
Dispose | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. (Inherited from IDisposable.) | |
FlushStore |
Flush the backing store (if any) to disk
This method will be executed on the CEF UI thread in an async fashion, to be notified upon completion implement ICompletionCallback
and pass in as callback | |
SetCookie |
Sets a cookie given a valid URL and explicit user-provided cookie attributes. This function expects each attribute to be well-formed. It will check for disallowed
characters (e.g. the ';' character is disallowed within the cookie value attribute) and will return false without setting
the cookie if such characters are found.
This method will be executed on the CEF UI thread in an async fashion, to be notified upon completion implement ISetCookieCallback
and pass in as callback | |
SetSupportedSchemes |
Set the schemes supported by this manager. Calling this method with an empty schemes value and includeDefaults
set to false will disable all loading and saving of cookies for this manager. Must be called before any cookies are accessed.
| |
VisitAllCookies |
Visits all cookies using the provided Cookie Visitor. The returned cookies are sorted by longest path, then by earliest creation date.
| |
VisitUrlCookies |
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.
|
Name | Description | |
---|---|---|
DeleteCookiesAsync |
Deletes all cookies that matches all the provided parameters asynchronously.
If both url and name are empty, all cookies will be deleted.
(Defined by AsyncExtensions.) | |
FlushStoreAsync |
Flush the backing store (if any) to disk.
(Defined by AsyncExtensions.) | |
SetCookieAsync |
Sets a cookie given a valid URL and explicit user-provided cookie attributes.
This function expects each attribute to be well-formed. It will check for disallowed
characters (e.g. the ';' character is disallowed within the cookie value attribute) and will return false without setting
(Defined by AsyncExtensions.) | |
VisitAllCookiesAsync |
Visits all cookies. The returned cookies are sorted by longest path, then by earliest creation date.
(Defined by AsyncExtensions.) | |
VisitUrlCookiesAsync |
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.
(Defined by AsyncExtensions.) |