Click or drag to resize
ICookieManagerDeleteCookiesAsync Method
Version 51.0.0
Deletes all cookies that matches all the provided parameters asynchronously. If both url and name are empty, all cookies will be deleted.

Namespace: CefSharp
Assembly: CefSharp (in CefSharp.dll) Version: 51.0.0.0 (51.0.0.0)
Syntax
Task<bool> DeleteCookiesAsync(
	string url,
	string name
)

Parameters

url
Type: SystemString
The cookie URL. If an empty string is provided, any URL will be matched.
name
Type: SystemString
The name of the cookie. If an empty string is provided, any URL will be matched.

Return Value

Type: TaskBoolean

[Missing <returns> documentation for "M:CefSharp.ICookieManager.DeleteCookiesAsync(System.String,System.String)"]

See Also