edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Enumerates the transfer types possible. We support only the two common types, ASCII and Image (often called binary).

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

Syntax

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

Members

Member nameValueDescription
ASCII1 Represents ASCII transfer type. As data is transferred, line terminator characters are translated into the local (client) platform's line terminator characters (CRLF for Windows platforms). For example, if transferring text files from a Unix server, line terminators will be converted from LF to CRLF.
BINARY2 Represents Image (or binary) transfer type. Files are transferred byte for byte without any conversion.

See Also