Fires when wodFtpDLX.NET changes its state.
[Visual Basic]
Public Delegate Sub FtpDLX.StateChangedDelegate( _
ByVal Sender As Object, _
ByVal Args As FtpStateChangedArgs _
) [C#]
public delegate void FtpDLX.StateChangedDelegate(
object Sender,
FtpStateChangedArgs Args
);[JScript]
public delegate FtpDLX.StateChangedDelegate(
Sender : Object,
Args : FtpStateChangedArgs
)StateChanged event is fired each time wodFtpDLX.NET internal state changes. Initially, it is set to Disconnected. Once you initiate new connection, it will change to Connecting, etc...
Using this event you can see if there is something happening with wodFtpDLX.NET, or it is idle and waiting for your commands. You can not use wodFtpDLX.NET while it's busy executing your command, you must wait for Done event to fire.
You can determine current state using State property.
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.