Constructor

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

Syntax

C#
public BytesTransferredEventArgs(
	string remoteFile,
	long byteCount,
	long resumeOffset
)
Visual Basic
Public Sub New ( _
	remoteFile As String, _
	byteCount As Long, _
	resumeOffset As Long _
)
Visual C++
public:
BytesTransferredEventArgs(
	String^ remoteFile, 
	long long byteCount, 
	long long resumeOffset
)

Parameters

remoteFile
Type: System..::..String
The name of the file being transferred, or the name of the directory if it is a directory listing.
byteCount
Type: System..::..Int64
The current count of bytes transferred.
resumeOffset
Type: System..::..Int64
File position at which the transfer was resumed (0 of not resumed).

See Also