Class CertificateErrorEventArgs
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
-
EventArgsCertificateErrorEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.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
EventIdlongThe ID of the event.
ErrorTypestringThe type of the error.
RequestURLstringThe url that was requested.
Properties
ErrorType
The type of the error.
public string ErrorType { get; init; }
Property Value
EventId
The ID of the event.
public long EventId { get; init; }
Property Value
RequestURL
The url that was requested.
public string RequestURL { get; init; }