Class ExemptedSetCookieWithReason
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
ExemptedSetCookieWithReason(CookieExemptionReason, string, Cookie)
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
ExemptionReasonCookieExemptionReasonThe reason the cookie was exempted.
CookieLinestringThe string representing this individual cookie as it would appear in the header.
CookieCookieThe cookie object representing the cookie.
Properties
Cookie
The cookie object representing the cookie.
public Cookie Cookie { get; init; }
Property Value
CookieLine
The string representing this individual cookie as it would appear in the header.
public string CookieLine { get; init; }
Property Value
ExemptionReason
The reason the cookie was exempted.
public CookieExemptionReason ExemptionReason { get; init; }