Enum CertificateValidationResult
- Namespace
- PushTechnology.ClientInterface.Client.Session
- Assembly
- Diffusion.Client.dll
The result of the CertificateValidationCallback delegate.
public enum CertificateValidationResult
Fields
ACCEPT = 0The remote certificate will be accepted for authentication.
REJECT = 1The remote certificate will be rejected for authentication.
Examples
Setting certificate validation to allow any remote certificate.
var factory = Diffusion.Sessions
.CertificateValidation( (certificate, chain, errors) => CertificateValidationResult.ACCEPT );
Remarks
Added in 6.4.