Table of Contents

Class CertificateErrorEventArgs

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

There is a certificate error. If overriding certificate errors is enabled, then it should be handled with the handleCertificateError command. Note: this event does not fire if the certificate error has been allowed internally. Only one client per target should override certificate errors at the same time.

public sealed record CertificateErrorEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<CertificateErrorEventArgs>
Inheritance
EventArgs
CertificateErrorEventArgs
Implements
IEquatable<EventArgs>
Inherited Members
EventArgs.ToString()
EventArgs.GetHashCode()
EventArgs.Equals(EventArgs)
EventArgs.<Clone>$()
EventArgs.BiDi
EventArgs.AdditionalData
EventArgs.AdditionalMessageData

Constructors

CertificateErrorEventArgs(long, string, string)

There is a certificate error. If overriding certificate errors is enabled, then it should be handled with the handleCertificateError command. Note: this event does not fire if the certificate error has been allowed internally. Only one client per target should override certificate errors at the same time.

public CertificateErrorEventArgs(long EventId, string ErrorType, string RequestURL)

Parameters

EventId long

The ID of the event.

ErrorType string

The type of the error.

RequestURL string

The url that was requested.

Properties

ErrorType

The type of the error.

public string ErrorType { get; init; }

Property Value

string

EventId

The ID of the event.

public long EventId { get; init; }

Property Value

long

RequestURL

The url that was requested.

public string RequestURL { get; init; }

Property Value

string