Class BlockedByResponseIssueDetails
Details for a request that has been blocked with the BLOCKED_BY_RESPONSE code. Currently only used for COEP/COOP, but may be extended to include some CSP errors in the future.
public sealed record BlockedByResponseIssueDetails : IEquatable<BlockedByResponseIssueDetails>
- Inheritance
-
BlockedByResponseIssueDetails
- Implements
- Inherited Members
Constructors
BlockedByResponseIssueDetails(AffectedRequest, BlockedByResponseReason)
Details for a request that has been blocked with the BLOCKED_BY_RESPONSE code. Currently only used for COEP/COOP, but may be extended to include some CSP errors in the future.
public BlockedByResponseIssueDetails(AffectedRequest Request, BlockedByResponseReason Reason)
Parameters
RequestAffectedRequestReasonBlockedByResponseReason
Properties
BlockedFrame
public AffectedFrame? BlockedFrame { get; init; }
Property Value
ParentFrame
public AffectedFrame? ParentFrame { get; init; }
Property Value
Reason
public BlockedByResponseReason Reason { get; init; }
Property Value
Request
public AffectedRequest Request { get; init; }