Fires during file sending or receiving.
[Visual Basic]
Public Delegate Sub FtpDLX.ProgressDelegate( _
ByVal Sender As Object, _
ByVal Args As FtpProgressArgs _
) [C#]
public delegate void FtpDLX.ProgressDelegate(
object Sender,
FtpProgressArgs Args
);[JScript]
public delegate FtpDLX.ProgressDelegate(
Sender : Object,
Args : FtpProgressArgs
)This event can be used for monitoring file transfers. It is fired during file transfer started by GetFile or PutFile methods. It will be fired several times, depending on your network speed (thus length of packets sent/received), file size, or something else. There is no default rule on exact number of times it will be fired. Once transfer is finished, Args.Position argument will have the same value as Args.Total argument.
Also, once file transfer is finished Done event will be fired.
Namespace: WeOnlyDo.Client
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: WeOnlyDo.Client.FTP (in WeOnlyDo.Client.FTP.dll)
© WeOnlyDo Software. All Rights Reserved.