ClassValidateServerCertificateEventArgs
These EventArgs are passed to the FiddlerApplication.OnValidateServerCertificate event handler when a server-provided HTTPS certificate is evaluated
Definition
Namespace:Fiddler
Assembly:FiddlerCore.dll
Syntax:
public class ValidateServerCertificateEventArgs : EventArgs
Inheritance: objectEventArgsValidateServerCertificateEventArgs
Inherited Members
Properties
CertificatePolicyErrors
The SslPolicyErrors found during default certificate evaluation.
Declaration
public SslPolicyErrors CertificatePolicyErrors { get; }
Property Value
ExpectedCN
The SubjectCN (e.g. Hostname) that should be expected on this HTTPS connection, based on the request's Host property.
ServerCertificate
The X509Certificate provided by the server to vouch for its authenticity
Declaration
public X509Certificate ServerCertificate { get; }
Property Value
ServerCertificateChain
The server's certificate chain.
Declaration
public X509Chain ServerCertificateChain { get; }
Property Value
Session
The Session for which a HTTPS certificate was received.
TargetPort
The port to which this request was targeted
ValidityState
Set this property to override the certificate validity
Declaration
public CertificateValidity ValidityState { get; set; }
Property Value