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(
	Stream srcStream,
	long bytesTransferred,
	string remoteFile,
	bool append,
	Exception ex,
	long localFileSize
)
Visual Basic
Protected Overridable Sub OnUploaded ( _
	srcStream As Stream, _
	bytesTransferred As Long, _
	remoteFile As String, _
	append As Boolean, _
	ex As Exception, _
	localFileSize As Long _
)
Visual C++
protected:
virtual void OnUploaded(
	Stream^ srcStream, 
	long long bytesTransferred, 
	String^ remoteFile, 
	bool append, 
	Exception^ ex, 
	long long localFileSize
)

Parameters

srcStream
Type: System.IO..::..Stream
Stream to upload.
bytesTransferred
Type: System..::..Int64
remoteFile
Type: System..::..String
Path of remote file.
append
Type: System..::..Boolean
Flag indicating whether or not the remote file was being appended to.
ex
Type: System..::..Exception
Exception thrown (if failed)
localFileSize
Type: System..::..Int64

See Also