Constructor

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

Syntax

C#
public TransferEventArgs(
	string localFilePath,
	string remoteFilename,
	TransferDirection direction,
	FTPTransferType transferType
)
Visual Basic
Public Sub New ( _
	localFilePath As String, _
	remoteFilename As String, _
	direction As TransferDirection, _
	transferType As FTPTransferType _
)
Visual C++
public:
TransferEventArgs(
	String^ localFilePath, 
	String^ remoteFilename, 
	TransferDirection direction, 
	FTPTransferType transferType
)

Parameters

localFilePath
Type: System..::..String
Path of the local file to be uploaded or downloaded (null for Stream and byte[] transfers)
remoteFilename
Type: System..::..String
The remote file name to be uploaded or downloaded
direction
Type: EnterpriseDT.Net.Ftp..::..TransferDirection
Upload or download
transferType
Type: EnterpriseDT.Net.Ftp..::..FTPTransferType
ASCII or binary

See Also