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
Expires
Unix time in seconds.
[Required]
[JsonPropertyName("expires")]
public float Expires { get; set; }
Property Value
HttpOnly
[Required]
[JsonPropertyName("httpOnly")]
public bool HttpOnly { get; set; }
Property Value
Name
[Required]
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Path
[Required]
[JsonPropertyName("path")]
public string Path { get; set; }
Property Value
SameSite
[Required]
[JsonPropertyName("sameSite")]
public SameSiteAttribute SameSite { get; set; }
Property Value
Secure
[Required]
[JsonPropertyName("secure")]
public bool Secure { get; set; }
Property Value
Value
[Required]
[JsonPropertyName("value")]
public string Value { get; set; }