CertificateValidity Enumeration |
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public enum CertificateValidity
Public Enumeration CertificateValidity
public enum class CertificateValidity
Members
| Member name | Value | Description |
---|
| Default | 0 |
The certificate will be considered valid if CertificatePolicyErrors == SslPolicyErrors.None, otherwise the certificate will be invalid unless the user manually allows the certificate.
|
| ConfirmWithUser | 1 |
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.
|
| ForceInvalid | 2 |
Force the certificate to be considered Invalid, regardless of the value of CertificatePolicyErrors.
|
| ForceValid | 3 |
Force the certificate to be considered Valid, regardless of the value of CertificatePolicyErrors.
|
See Also