Table of Contents

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

clone BrowserContextClearCookiesOptions

Properties

Domain

Only removes cookies with the given domain.

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

Property Value

string

DomainRegex

Only removes cookies with the given domain.

[JsonPropertyName("domainRegex")]
public Regex? DomainRegex { get; set; }

Property Value

Regex

DomainString

Only removes cookies with the given domain.

[JsonPropertyName("domainString")]
public string? DomainString { get; set; }

Property Value

string

Name

Only removes cookies with the given name.

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

Property Value

string

NameRegex

Only removes cookies with the given name.

[JsonPropertyName("nameRegex")]
public Regex? NameRegex { get; set; }

Property Value

Regex

NameString

Only removes cookies with the given name.

[JsonPropertyName("nameString")]
public string? NameString { get; set; }

Property Value

string

Path

Only removes cookies with the given path.

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

Property Value

string

PathRegex

Only removes cookies with the given path.

[JsonPropertyName("pathRegex")]
public Regex? PathRegex { get; set; }

Property Value

Regex

PathString

Only removes cookies with the given path.

[JsonPropertyName("pathString")]
public string? PathString { get; set; }

Property Value

string