Table of Contents

Class ExemptedSetCookieWithReason

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

A cookie should have been blocked by 3PCD but is exempted and stored from a response with the corresponding reason. A cookie could only have at most one exemption reason.

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

Constructors

A cookie should have been blocked by 3PCD but is exempted and stored from a response with the corresponding reason. A cookie could only have at most one exemption reason.

public ExemptedSetCookieWithReason(CookieExemptionReason ExemptionReason, string CookieLine, Cookie Cookie)

Parameters

ExemptionReason CookieExemptionReason

The reason the cookie was exempted.

CookieLine string

The string representing this individual cookie as it would appear in the header.

Cookie Cookie

The cookie object representing the cookie.

Properties

The cookie object representing the cookie.

public Cookie Cookie { get; init; }

Property Value

Cookie

CookieLine

The string representing this individual cookie as it would appear in the header.

public string CookieLine { get; init; }

Property Value

string

ExemptionReason

The reason the cookie was exempted.

public CookieExemptionReason ExemptionReason { get; init; }

Property Value

CookieExemptionReason