Fires when wodFtpDLX.NET finishes some method.
[Visual Basic]
Public Delegate Sub FtpDLX.DoneDelegate( _
ByVal Sender As Object, _
ByVal Args As FtpDoneArgs _
) [C#]
public delegate void FtpDLX.DoneDelegate(
object Sender,
FtpDoneArgs Args
);[JScript]
public delegate FtpDLX.DoneDelegate(
Sender : Object,
Args : FtpDoneArgs
)For each method issued by the user (MakeDir, ListDir, DeleteFile...) this event will be fired to signalize that method has completed, and that it was (successfully) executed. If error occurred, Args.Error will contain nonzero value that determines the error. In such case, Args.Description will contain string representation of the error - if it was provided by the server, your OS or the wodFtpDLX.NET itself.
You can use this event for automated requests. As soon as you initiate some method, and this event is fired, you can initiate new method immediately.
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.