Class Cookie
- Namespace
- Soup
- Assembly
- Soup-3.0.dll
public sealed class Cookie : BoxedRecord, GTypeProvider, InstanceFactory, IEquatable<Cookie>, IDisposable
- Inheritance
-
Cookie
- Implements
- Inherited Members
Constructors
Cookie(CookieOwnedHandle)
public Cookie(CookieOwnedHandle handle)
Parameters
handle
CookieOwnedHandle
Properties
Handle
public CookieOwnedHandle Handle { get; }
Property Value
Methods
AppliesToUri(Uri)
public bool AppliesToUri(Uri uri)
Parameters
uri
Uri
Returns
Copy()
public Cookie Copy()
Returns
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public void Dispose()
DomainMatches(string)
public bool DomainMatches(string host)
Parameters
host
string
Returns
Equal(Cookie)
public bool Equal(Cookie cookie2)
Parameters
cookie2
Cookie
Returns
Equals(Cookie?)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(Cookie? other)
Parameters
other
CookieAn object to compare with this object.
Returns
Equals(object?)
Determines whether the specified object is equal to the current object.
public override bool Equals(object? obj)
Parameters
obj
objectThe object to compare with the current object.
Returns
Free()
public void Free()
GetDomain()
public string GetDomain()
Returns
GetExpires()
public DateTime? GetExpires()
Returns
GetGType()
public static Type GetGType()
Returns
GetHashCode()
Serves as the default hash function.
public override int GetHashCode()
Returns
- int
A hash code for the current object.
GetHttpOnly()
public bool GetHttpOnly()
Returns
GetName()
public string GetName()
Returns
GetPath()
public string GetPath()
Returns
GetSameSitePolicy()
public SameSitePolicy GetSameSitePolicy()
Returns
GetSecure()
public bool GetSecure()
Returns
GetValue()
public string GetValue()
Returns
New(string, string, string, string, int)
public static Cookie New(string name, string value, string domain, string path, int maxAge)
Parameters
Returns
Parse(string, Uri?)
public static Cookie? Parse(string header, Uri? origin)
Parameters
Returns
SetDomain(string)
public void SetDomain(string domain)
Parameters
domain
string
SetExpires(DateTime)
public void SetExpires(DateTime expires)
Parameters
expires
DateTime
SetHttpOnly(bool)
public void SetHttpOnly(bool httpOnly)
Parameters
httpOnly
bool
SetMaxAge(int)
public void SetMaxAge(int maxAge)
Parameters
maxAge
int
SetName(string)
public void SetName(string name)
Parameters
name
string
SetPath(string)
public void SetPath(string path)
Parameters
path
string
SetSameSitePolicy(SameSitePolicy)
public void SetSameSitePolicy(SameSitePolicy policy)
Parameters
policy
SameSitePolicy
SetSecure(bool)
public void SetSecure(bool secure)
Parameters
secure
bool
SetValue(string)
public void SetValue(string value)
Parameters
value
string
ToCookieHeader()
public string ToCookieHeader()
Returns
ToSetCookieHeader()
public string ToSetCookieHeader()