Constructor

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

Syntax

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

Parameters

localStream
Type: System.IO..::..Stream
The stream being transferred to/from.
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