edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Enumerates the connect modes that are possible, active and passive.

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

Syntax

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

Members

Member nameValueDescription
ACTIVE1 Represents active - PORT - connect mode. The server connects to the client for data transfers.
PASV2 Represents passive - PASV - connect mode. The client connects to the server for data transfers.

Remarks

The mode describes the behaviour of the server. In active mode, the server actively connects to the client to establish a data connection. In passive mode the client connects to the server.

See Also