Fires when the server requests the response to a login challenge.
[Visual Basic]
Public Delegate Sub FtpDLX.LoginChallengeDelegate( _
ByVal Sender As Object, _
ByVal Args As LoginChallengeArgs _
) [C#]
public delegate void FtpDLX.LoginChallengeDelegate(
object Sender,
LoginChallengeArgs Args
);[JScript]
public delegate FtpDLX.LoginChallengeDelegate(
Sender : Object,
Args : LoginChallengeArgs
)The LoginChallenge event will fire when wodFtpDLX.NET tries to use KeyboardInteractive authentication. This type of authentication is selected when you set Authentication = AuthPassword (or AuthAny by default) but password authentication fails. In this case wodFtpDLX.NET tries KeyboardInteractive authentication (if available on the server) where the server sends a 'challenge' request that is shown on the user's screen and you must answer with the proper response in order to be authenticated.
Often, the server just sends something like 'please enter your password', but on some configurations this can be virtually any question. For example, the server may ask you to enter a one-time-password or your token ID.
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.