| 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: CefSharpAssembly: CefSharp (in CefSharp.dll) Version: 51.0.0.0 (51.0.0.0)
SyntaxTask<bool> DeleteCookiesAsync(
	string url,
	string name
)
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