Fires when wodFtpDLX.NET provides information about executed command and returned reply.
[Visual Basic]
Public Delegate Sub FtpDLX.FtpReplyDelegate( _
ByVal Sender As Object, _
ByVal Args As FtpReplyArgs _
) [C#]
public delegate void FtpDLX.FtpReplyDelegate(
object Sender,
FtpReplyArgs Args
);[JScript]
public delegate FtpDLX.FtpReplyDelegate(
Sender : Object,
Args : FtpReplyArgs
)FTPReply event is just debug event that will be fired only with FTP-alike transfer protocols (FTP and FTPS). Each time some command is executed by wodFtpDLX.NET, this event will be fired. It will contain executed command, and reply code (and full text) as returned by the server.
If server's reply contains more than one line, they will all be included in Args.ReplyText. If same code produces more than one reply (with different codes), FTPReply will fire more than once. Each time Args.Command argument will contain command that caused this reply to be returned. Typical example is RETR command which causes server to send 150 Data connection open and 226 Transfer finished.
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.