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(
	byte[] bytes,
	string remoteFile,
	long bytesTransferred,
	bool append,
	Exception ex
)
Visual Basic
Protected Overridable Sub OnUploaded ( _
	bytes As Byte(), _
	remoteFile As String, _
	bytesTransferred As Long, _
	append As Boolean, _
	ex As Exception _
)
Visual C++
protected:
virtual void OnUploaded(
	array<unsigned char>^ bytes, 
	String^ remoteFile, 
	long long bytesTransferred, 
	bool append, 
	Exception^ ex
)

Parameters

bytes
Type: array<System..::..Byte>[]()[][]
Byte-array to upload.
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.
ex
Type: System..::..Exception
Exception thrown (if failed)

See Also