edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Called when a file uploading operation has completed (though it may have been cancelled).

Namespace: EnterpriseDT.Net.Ftp
Assembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 9.4.0.40

Syntax

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

Parameters

localPath
Type: System..::..String
Path of local file.
remoteFile
Type: System..::..String
Path of remote file.
bytesTransferred
Type: System..::..Int64
writeMode
Type: EnterpriseDT.Net.Ftp..::..WriteMode
ex
Type: System..::..Exception
Exception thrown (if failed)

See Also