Called when a file is about to be uploaded.

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

Syntax

C#
protected bool OnUploading(
	string localPath,
	ref string remoteFile,
	ref bool append,
	ref bool resume
)
Visual Basic
Protected Function OnUploading ( _
	localPath As String, _
	ByRef remoteFile As String, _
	ByRef append As Boolean, _
	ByRef resume As Boolean _
) As Boolean
Visual C++
protected:
bool OnUploading(
	String^ localPath, 
	String^% remoteFile, 
	bool% append, 
	bool% resume
)

Parameters

localPath
Type: System..::..String
Path of local file.
remoteFile
Type: System..::..String%
Path of remote file.
append
Type: System..::..Boolean%
Flag indicating whether or not the remote file is being appended to.
resume
Type: System..::..Boolean%

Return Value

true if the operation is to continue.

See Also