edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Controls/indicates whether this client is performing explicit or implicit FTPS.

Namespace: EnterpriseDT.Net.Ftp.Ssl
Assembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 9.4.0.40

Syntax

C#
public bool IsImplicitFTPS { get; set; }
Visual Basic
Public Property IsImplicitFTPS As Boolean
	Get
	Set
Visual C++
public:
property bool IsImplicitFTPS {
	bool get ();
	void set (bool value);
}

Field Value

true if the client is performing implicit FTPS. false is the default.

Remarks

Implicit FTPS is an older form of FTPS which uses pure SSL connection, i.e. SSL sessions are established immediately upon socket connection for all FTP channels.

This property may be read any time, but may be set only prior to connection.

See Also