FTPTransferType Enumeration |
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: 12.3.0.0
Syntaxpublic enum FTPTransferType
Public Enumeration FTPTransferType
public enum class FTPTransferType
Members|
| Member name | Value | Description |
|---|
| ASCII | 1 |
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.
|
| BINARY | 2 |
Represents Image (or binary) transfer type. Files are transferred byte for byte
without any conversion.
|
See Also