Table of Contents

Class AffectedCookie

Namespace
Selenium.WebDriver.BiDi.Cdp.Audits
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

Information about a cookie that is affected by an inspector issue.

public sealed record AffectedCookie : IEquatable<AffectedCookie>
Inheritance
AffectedCookie
Implements
Inherited Members

Constructors

AffectedCookie(string, string, string)

Information about a cookie that is affected by an inspector issue.

public AffectedCookie(string Name, string Path, string Domain)

Parameters

Name string

The following three properties uniquely identify a cookie

Path string
Domain string

Properties

Domain

public string Domain { get; init; }

Property Value

string

Name

The following three properties uniquely identify a cookie

public string Name { get; init; }

Property Value

string

Path

public string Path { get; init; }

Property Value

string