Click or drag to resize

ICookieStoreDelete Method

Deletes one specific cookie. The cookie instance can be received from a list of cookies returned from the GetAllCookies(String) method.

Namespace:  DotNetBrowser.Cookies
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.13.0
Syntax
C#
Task Delete(
	Cookie cookie
)

Parameters

cookie
Type: DotNetBrowser.CookiesCookie
cookie to delete.

Return Value

Type: Task
A task that completes when the cookie was deleted.
Exceptions
ExceptionCondition
ObjectDisposedExceptionThe ICookieStore has already been disposed.
See Also