Table of Contents

Class HttpCookie

Namespace
Playnite.SDK
Assembly
Playnite.SDK.dll

Represents web view cookie object.

public class HttpCookie
Inheritance
HttpCookie
Inherited Members

Constructors

HttpCookie()

Creates new instance of HttpCookie.

public HttpCookie()

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