Table of Contents

Class HttpCookie

Namespace
Playnite.WebViews
Assembly
Playnite.SDK.dll
public class HttpCookie
Inheritance
HttpCookie
Inherited Members

Properties

Creation

The cookie creation date.

public DateTime Creation { get; set; }

Property Value

DateTime

Domain

The cookie domain.

public string? Domain { get; set; }

Property Value

string

Expires

The cookie expire date.

public DateTime? Expires { get; set; }

Property Value

DateTime?

HttpOnly

If true the cookie will only be sent for HTTP requests.

public bool HttpOnly { get; set; }

Property Value

bool

LastAccess

The cookie last access date. This is automatically populated by the system on access.

public DateTime LastAccess { get; set; }

Property Value

DateTime

Name

The cookie name.

public string? Name { get; set; }

Property Value

string

Path

The cookie path.

public string? Path { get; set; }

Property Value

string

Priority

Priority

public CookiePriority Priority { get; set; }

Property Value

CookiePriority

SameSite

Same site

public CookieSameSite SameSite { get; set; }

Property Value

CookieSameSite

Secure

If true the cookie will only be sent for HTTPS requests.

public bool Secure { get; set; }

Property Value

bool

Value

The cookie value.

public string? Value { get; set; }

Property Value

string