The current file transfer type (BINARY or ASCII).

Namespace: EnterpriseDT.Net.Ftp
Assembly: edtFTPnet (in edtFTPnet.dll) Version: 2.2.3.0

Syntax

C#
public FTPTransferType TransferType { get; set; }
Visual Basic
Public Property TransferType As FTPTransferType
	Get
	Set
Visual C++
public:
virtual property FTPTransferType TransferType {
	FTPTransferType get () sealed;
	void set (FTPTransferType value) sealed;
}

Implements

IFileTransferClient..::..TransferType

Remarks

When the transfer-type is set to BINARY then files are transferred byte-for-byte such that the transferred file will be identical to the original. When the transfer-type is set to BINARY then end-of-line characters will be translated where necessary between Windows and UNIX formats.

See Also