Fires before wodFtpDLX.NET evaluates received reply from the server.
[Visual Basic]
Public Delegate Sub FtpDLX.PreTranslateReplyDelegate( _
ByVal Sender As Object, _
ByVal Args As FtpReplyArgs _
) [C#]
public delegate void FtpDLX.PreTranslateReplyDelegate(
object Sender,
FtpReplyArgs Args
);[JScript]
public delegate FtpDLX.PreTranslateReplyDelegate(
Sender : Object,
Args : FtpReplyArgs
)This event can be used for
monitoring replies FTP server sent as result of our commands,
before it is actually received by wodFtpDLX.NET. At this point
you can change
Args.ReplyCode
and Args.ReplyText
values to anything you like - and wodFtpDLX.NET will think it
received reply as you defined it here.
Beware - what you're doing here is dangerous for
wodFtpDLX.NET. You may break its internal mechanism of behavior,
and strange results may occur. But - to provide you with more
freedom over what's going on 'under the hood', we have provided
this event for advanced users.
Note - this event will not fire in SFTP protocol.
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.