edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Called when a file is about to be downloaded.

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

Syntax

C#
protected bool OnDownloading(
	string remoteFile,
	out long remoteFileSize,
	out DateTime remoteModTime
)
Visual Basic
Protected Function OnDownloading ( _
	remoteFile As String, _
	<OutAttribute> ByRef remoteFileSize As Long, _
	<OutAttribute> ByRef remoteModTime As DateTime _
) As Boolean
Visual C++
protected:
bool OnDownloading(
	String^ remoteFile, 
	[OutAttribute] long long% remoteFileSize, 
	[OutAttribute] DateTime% remoteModTime
)

Parameters

remoteFile
Type: System..::..String
Path of remote file.
remoteFileSize
Type: System..::..Int64%
remoteModTime
Type: System..::..DateTime%

Return Value

true if the operation is to continue.

See Also