Class MixedContentIssueDetails
public sealed record MixedContentIssueDetails : IEquatable<MixedContentIssueDetails>
- Inheritance
-
MixedContentIssueDetails
- Implements
- Inherited Members
Constructors
MixedContentIssueDetails(MixedContentResolutionStatus, string, string)
public MixedContentIssueDetails(MixedContentResolutionStatus ResolutionStatus, string InsecureURL, string MainResourceURL)
Parameters
ResolutionStatusMixedContentResolutionStatusThe way the mixed content issue is being resolved.
InsecureURLstringThe unsafe http url causing the mixed content issue.
MainResourceURLstringThe url responsible for the call to an unsafe url.
Properties
Frame
Optional because not every mixed content issue is necessarily linked to a frame.
public AffectedFrame? Frame { get; init; }
Property Value
InsecureURL
The unsafe http url causing the mixed content issue.
public string InsecureURL { get; init; }
Property Value
MainResourceURL
The url responsible for the call to an unsafe url.
public string MainResourceURL { get; init; }
Property Value
Request
The mixed content request. Does not always exist (e.g. for unsafe form submission urls).
public AffectedRequest? Request { get; init; }
Property Value
ResolutionStatus
The way the mixed content issue is being resolved.
public MixedContentResolutionStatus ResolutionStatus { get; init; }
Property Value
ResourceType
The type of resource causing the mixed content issue (css, js, iframe, form,...). Marked as optional because it is mapped to from blink::mojom::RequestContextType, which will be replaced by network::mojom::RequestDestination
public MixedContentResourceType? ResourceType { get; init; }