Table of Contents

Class BrowserContextCookiesResult

Namespace
Microsoft.Playwright
Assembly
Microsoft.Playwright.dll
public class BrowserContextCookiesResult
Inheritance
BrowserContextCookiesResult
Inherited Members

Constructors

BrowserContextCookiesResult()

public BrowserContextCookiesResult()

Properties

Domain

[Required]
[JsonPropertyName("domain")]
public string Domain { get; set; }

Property Value

string

Expires

Unix time in seconds.

[Required]
[JsonPropertyName("expires")]
public float Expires { get; set; }

Property Value

float

HttpOnly

[Required]
[JsonPropertyName("httpOnly")]
public bool HttpOnly { get; set; }

Property Value

bool

Name

[Required]
[JsonPropertyName("name")]
public string Name { get; set; }

Property Value

string

Path

[Required]
[JsonPropertyName("path")]
public string Path { get; set; }

Property Value

string

SameSite

[Required]
[JsonPropertyName("sameSite")]
public SameSiteAttribute SameSite { get; set; }

Property Value

SameSiteAttribute

Secure

[Required]
[JsonPropertyName("secure")]
public bool Secure { get; set; }

Property Value

bool

Value

[Required]
[JsonPropertyName("value")]
public string Value { get; set; }

Property Value

string