Click or drag to resize
CertificateValidity Enumeration
Enumeration of possible responses specified by the ValidateServerCertificateEventArgs as modified by FiddlerApplication's OnValidateServerCertificate event

Namespace: Fiddler
Assembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax
public enum CertificateValidity
Members
  Member nameValueDescription
Default0 The certificate will be considered valid if CertificatePolicyErrors == SslPolicyErrors.None, otherwise the certificate will be invalid unless the user manually allows the certificate.
ConfirmWithUser1 The certificate will be confirmed with the user even if CertificatePolicyErrors == SslPolicyErrors.None. Note: FiddlerCore does not support user-prompting and will always treat this status as ForceInvalid.
ForceInvalid2 Force the certificate to be considered Invalid, regardless of the value of CertificatePolicyErrors.
ForceValid3 Force the certificate to be considered Valid, regardless of the value of CertificatePolicyErrors.
See Also