Creates an instance of FtpProgressEventArgs.

Namespace: Jscape.Ftp
Assembly: Jscape.Ftp (in Jscape.Ftp.dll) Version: 2.4.5.0

Syntax

C#
public FtpProgressEventArgs(
	string fileName,
	string path,
	TransmitModes transmitMode,
	TransferModes transferMode,
	long bytes,
	long totalBytes
)
Visual Basic
Public Sub New ( _
	fileName As String, _
	path As String, _
	transmitMode As TransmitModes, _
	transferMode As TransferModes, _
	bytes As Long, _
	totalBytes As Long _
)
Visual C++
public:
FtpProgressEventArgs(
	String^ fileName, 
	String^ path, 
	TransmitModes transmitMode, 
	TransferModes transferMode, 
	long long bytes, 
	long long totalBytes
)

Parameters

fileName
Type: System..::..String
The name of file being transferred.
path
Type: System..::..String
The path of the file being transferred.
transmitMode
Type: Jscape.Ftp..::..TransmitModes
The transmit mode of the current process.
transferMode
Type: Jscape.Ftp..::..TransferModes
The transfer mode of the current process.
bytes
Type: System..::..Int64
The number of bytes transferred.
totalBytes
Type: System..::..Int64
The total number of bytes of the file being transferred.

See Also