Called when a file uploading operation has completed (though it may have been cancelled).

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

Syntax

C#
protected virtual void OnUploaded(
	string localPath,
	string remoteFile,
	long bytesTransferred,
	bool append,
	bool resume,
	Exception ex
)
Visual Basic
Protected Overridable Sub OnUploaded ( _
	localPath As String, _
	remoteFile As String, _
	bytesTransferred As Long, _
	append As Boolean, _
	resume As Boolean, _
	ex As Exception _
)
Visual C++
protected:
virtual void OnUploaded(
	String^ localPath, 
	String^ remoteFile, 
	long long bytesTransferred, 
	bool append, 
	bool resume, 
	Exception^ ex
)

Parameters

localPath
Type: System..::..String
Path of local file.
remoteFile
Type: System..::..String
Path of remote file.
bytesTransferred
Type: System..::..Int64
append
Type: System..::..Boolean
Flag indicating whether or not the remote file was being appended to.
resume
Type: System..::..Boolean
ex
Type: System..::..Exception
Exception thrown (if failed)

See Also