Click or drag to resize
CookieManager Class
Version 63.0.0

[Missing <summary> documentation for "T:CefSharp.CookieManager"]

Inheritance Hierarchy
SystemObject
  CefSharpCookieManager

Namespace: CefSharp
Assembly: CefSharp.Core (in CefSharp.Core.dll) Version: 63.0.0.0
Syntax
public class CookieManager : ICookieManager

The CookieManager type exposes the following members.

Constructors
  NameDescription
Public methodCookieManager
Initializes a new instance of the CookieManager class
Top
Properties
  NameDescription
Public propertyIsDisposed
Top
Methods
  NameDescription
Public methodDeleteCookies
Public methodDispose
Releases all resources used by the CookieManager
Protected methodDispose(Boolean)
Releases the unmanaged resources used by the CookieManager and optionally releases the managed resources
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize (Overrides ObjectFinalize.)
Public methodFlushStore
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodSetCookie
Public methodSetStoragePath
Public methodSetSupportedSchemes
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodVisitAllCookies
Public methodVisitUrlCookies
Top
Extension Methods
  NameDescription
Public Extension MethodDeleteCookiesAsync
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.)
Public Extension MethodFlushStoreAsync
Flush the backing store (if any) to disk.
(Defined by AsyncExtensions.)
Public Extension MethodSetCookieAsync
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.)
Public Extension MethodVisitAllCookiesAsync
Visits all cookies. The returned cookies are sorted by longest path, then by earliest creation date.
(Defined by AsyncExtensions.)
Public Extension MethodVisitUrlCookiesAsync
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.)
Top
See Also