Class BrowserContextClearCookiesOptions
- Namespace
- Microsoft.Playwright
- Assembly
- Microsoft.Playwright.dll
public class BrowserContextClearCookiesOptions
- Inheritance
-
BrowserContextClearCookiesOptions
- Inherited Members
Constructors
BrowserContextClearCookiesOptions()
public BrowserContextClearCookiesOptions()
BrowserContextClearCookiesOptions(BrowserContextClearCookiesOptions)
public BrowserContextClearCookiesOptions(BrowserContextClearCookiesOptions clone)
Parameters
Properties
Domain
Only removes cookies with the given domain.
[JsonPropertyName("domain")]
public string? Domain { get; set; }
Property Value
DomainRegex
Only removes cookies with the given domain.
[JsonPropertyName("domainRegex")]
public Regex? DomainRegex { get; set; }
Property Value
DomainString
Only removes cookies with the given domain.
[JsonPropertyName("domainString")]
public string? DomainString { get; set; }
Property Value
Name
Only removes cookies with the given name.
[JsonPropertyName("name")]
public string? Name { get; set; }
Property Value
NameRegex
Only removes cookies with the given name.
[JsonPropertyName("nameRegex")]
public Regex? NameRegex { get; set; }
Property Value
NameString
Only removes cookies with the given name.
[JsonPropertyName("nameString")]
public string? NameString { get; set; }
Property Value
Path
Only removes cookies with the given path.
[JsonPropertyName("path")]
public string? Path { get; set; }
Property Value
PathRegex
Only removes cookies with the given path.
[JsonPropertyName("pathRegex")]
public Regex? PathRegex { get; set; }
Property Value
PathString
Only removes cookies with the given path.
[JsonPropertyName("pathString")]
public string? PathString { get; set; }