Interface ICookieStore
.NET interface skeleton to be manually developed following https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/CookieStore.html
public interface ICookieStore
Properties
Cookies
List<HttpCookie> Cookies { get; }
Property Value
URIs
List<URI> URIs { get; }
Property Value
Methods
Add(URI, HttpCookie)
void Add(URI arg0, HttpCookie arg1)
Parameters
arg0
URIarg1
HttpCookie
Get(URI)
List<HttpCookie> Get(URI arg0)
Parameters
Returns
Remove(URI, HttpCookie)
bool Remove(URI arg0, HttpCookie arg1)
Parameters
arg0
URIarg1
HttpCookie
Returns
RemoveAll()
bool RemoveAll()