Table of Contents
- Getting Started
- EO.Pdf
- EO.Web
- EO.WebBrowser
- EO.Wpf
- Common Topics
- Reference
- .NET API Reference
- EO.Base
- EO.Base.UI
- EO.Extensions
- EO.Pdf
- EO.Pdf
- Classes
- Interfaces
- Enumerations
- HtmlToPdfAutoFitMode Enumeration
- HtmlToPdfErrorCode Enumeration
- HtmlToPdfMode Enumeration
- HtmlToPdfTriggerMode Enumeration
- PageBreakMode Enumeration
- PdfActionType Enumeration
- PdfDestFitMode Enumeration
- PdfDocumentPermissions Enumeration
- PdfPageLayout Enumeration
- PdfPageMode Enumeration
- PdfPortfolioView Enumeration
- PdfStandard Enumeration
- PdfTextFieldMode Enumeration
- PdfViewerErrorCode Enumeration
- PdfViewerUIElement Enumeration
- SSLVerificationMode Enumeration
- Delegates
- EO.Pdf.Acm
- EO.Pdf.Contents
- EO.Pdf.Drawing
- EO.Pdf.Mvc
- EO.Web
- EO.WebBrowser
- EO.WebBrowser.DOM
- EO.WebEngine
- EO.WinForm
- EO.Wpf
- EO.Wpf.Gauge
- EO.Wpf.Gauge.Shapes
- EO.Wpf.Primitives
- EO.Wpf.Themes.Aero
- EO.Wpf.Themes.Classic
- EO.Wpf.Themes.Luna
- EO.Wpf.Themes.Metro
- EO.Wpf.Themes.Royale
- JavaScript API Reference
- .NET API Reference
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