Table of Contents

Class SecurityStateExplanation

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

An explanation of an factor contributing to the security state.

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

Constructors

SecurityStateExplanation(SecurityState, string, string, string, MixedContentType, ImmutableArray<string>)

An explanation of an factor contributing to the security state.

public SecurityStateExplanation(SecurityState SecurityState, string Title, string Summary, string Description, MixedContentType MixedContentType, ImmutableArray<string> Certificate)

Parameters

SecurityState SecurityState

Security state representing the severity of the factor being explained.

Title string

Title describing the type of factor.

Summary string

Short phrase describing the type of factor.

Description string

Full text explanation of the factor.

MixedContentType MixedContentType

The type of mixed content described by the explanation.

Certificate ImmutableArray<string>

Page certificate.

Properties

Certificate

Page certificate.

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

Property Value

ImmutableArray<string>

Description

Full text explanation of the factor.

public string Description { get; init; }

Property Value

string

MixedContentType

The type of mixed content described by the explanation.

public MixedContentType MixedContentType { get; init; }

Property Value

MixedContentType

Recommendations

Recommendations to fix any issues.

public ImmutableArray<string>? Recommendations { get; init; }

Property Value

ImmutableArray<string>?

SecurityState

Security state representing the severity of the factor being explained.

public SecurityState SecurityState { get; init; }

Property Value

SecurityState

Summary

Short phrase describing the type of factor.

public string Summary { get; init; }

Property Value

string

Title

Title describing the type of factor.

public string Title { get; init; }

Property Value

string