Table of Contents

Class CookieDeprecationMetadataIssueDetails

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

This issue warns about third-party sites that are accessing cookies on the current page, and have been permitted due to having a global metadata grant. Note that in this context 'site' means eTLD+1. For example, if the URL https://example.test:80/web_page was accessing cookies, the site reported would be example.test.

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

Constructors

CookieDeprecationMetadataIssueDetails(ImmutableArray<string>, double, bool, CookieOperation)

This issue warns about third-party sites that are accessing cookies on the current page, and have been permitted due to having a global metadata grant. Note that in this context 'site' means eTLD+1. For example, if the URL https://example.test:80/web_page was accessing cookies, the site reported would be example.test.

public CookieDeprecationMetadataIssueDetails(ImmutableArray<string> AllowedSites, double OptOutPercentage, bool IsOptOutTopLevel, CookieOperation Operation)

Parameters

AllowedSites ImmutableArray<string>
OptOutPercentage double
IsOptOutTopLevel bool
Operation CookieOperation

Properties

AllowedSites

public ImmutableArray<string> AllowedSites { get; init; }

Property Value

ImmutableArray<string>

IsOptOutTopLevel

public bool IsOptOutTopLevel { get; init; }

Property Value

bool

Operation

public CookieOperation Operation { get; init; }

Property Value

CookieOperation

OptOutPercentage

public double OptOutPercentage { get; init; }

Property Value

double