CookieManager Class |
[Missing <summary> documentation for "T:CefSharp.CookieManager"]
Namespace: CefSharp
The CookieManager type exposes the following members.
Name | Description | |
---|---|---|
CookieManager | Initializes a new instance of the CookieManager class |
Name | Description | |
---|---|---|
IsDisposed |
Name | Description | |
---|---|---|
DeleteCookies | ||
Dispose | Releases all resources used by the CookieManager | |
Dispose(Boolean) | Releases the unmanaged resources used by the CookieManager and optionally releases the managed resources | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | (Overrides ObjectFinalize.) | |
FlushStore | ||
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
SetCookie | ||
SetStoragePath | ||
SetSupportedSchemes | ||
ToString | Returns a string that represents the current object. (Inherited from Object.) | |
VisitAllCookies | ||
VisitUrlCookies |
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.) |