Click or drag to resize

AsyncExtensions Class

Version 86.0.240
Async extensions for different interfaces
Inheritance Hierarchy
SystemObject
  CefSharpAsyncExtensions

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 86.0.240.0 (86.0.240.0)
Syntax
public static class AsyncExtensions

The AsyncExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberDeleteCookiesAsync
Deletes all cookies that matches all the provided parameters asynchronously. If both url and name are empty, all cookies will be deleted.
Public methodStatic memberFlushStoreAsync
Flush the backing store (if any) to disk.
Public methodStatic memberGetNavigationEntriesAsync
Retrieve a snapshot of current navigation entries
Public methodStatic memberSetCookieAsync
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
Public methodStatic memberVisitAllCookiesAsync
Visits all cookies. The returned cookies are sorted by longest path, then by earliest creation date.
Public methodStatic memberVisitUrlCookiesAsync
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.
Top
See Also