Defines an interface allowing the user to manipulate cookies on the current page.
public interface ICookieJar
Properties AllCookies
Gets all cookies defined for the current page.
ReadOnlyCollection<Cookie> AllCookies { get; }
Property Value
Adds a cookie to the current page.
void AddCookie(Cookie cookie)
Parameters
cookie
Cookie
The Cookie object to be added.
If cookie
is null.
Deletes all cookies from the page.
DeleteCookie(Cookie)Deletes the specified cookie from the page.
void DeleteCookie(Cookie cookie)
Parameters
cookie
Cookie
The Cookie to be deleted.
If cookie
is null.
Deletes the cookie with the specified name from the page.
void DeleteCookieNamed(string name)
Parameters
name
string
The name of the cookie to be deleted.
Gets a cookie with the specified name.
Cookie? GetCookieNamed(string name)
Parameters
name
string
The name of the cookie to retrieve.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4