Table of Contents
SSLVerificationMode Enumeration

Specifies how to verify a server SSL certificate.

Namespace: EO.Pdf
Assembly: EO.Pdf (in EO.Pdf.dll)

Syntax
 public enum SSLVerificationMode
Members
Member Name Description
None Do not verify SSL certificate against a trusted certificate authority. This allows you to use self-signed test certificate.
VerifyCertificate Verify the certificate against a trusted certificate authority only without checking whether the intended host name for the certificate matches the actual host name. For example, a certificate for "www.production.com" will be accepted even if it is being used on "www.test.com". Use this option if you have a valid certificate and wish to test it in your test environment.
VerifyHost Verify the certificate against a trusted certificate authority, and also verify the host name for the certificate. This ensures the certificate is authentic and also ensures it is used on the intended site.
See Also