edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Specifies type of server valudation to use.

Namespace: EnterpriseDT.Net.Ftp.Pro
Assembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 8.0.0.20

Syntax

C#
public enum ProFTPServerValidationType
Visual Basic
Public Enumeration ProFTPServerValidationType
Visual C++
public enum class ProFTPServerValidationType

Members

Member nameValueDescription
None0Accepts the certificate unconditionally.
Callback1 Triggers the ServerValidate event which may be used to perform manual checks on the certificate.
Automatic2

Uses Operating System resources to validate the certificate. On Windows the installed certificates are used for this purpose. These certificates may be managed on the Contents tab of the Internet Options control panel.

Note that an important part of validating the certificate is to perform a name-check. In a name-check the Common Name on the certificate is compared with the host-name of the FTP server that we believe we are connected to. The Common Name to be used for name-checking is assumed to be the same as the host-name that was used upon connection, though it may be set manually using the ServerCommonName.

AutomaticNoNameCheck3 Same as Automatic but without name-checking.

See Also