EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElSimpleSSHClient.OnAuthenticationKeyboard

TElSimpleSSHClient     See also    


 

This event is fired when the keyboard-interactive authentication type is chosen by server

 
 

Declaration

[C#]
    event TSSHAuthenticationKeyboardEvent OnAuthenticationKeyboard;
    delegate void TSSHAuthenticationKeyboardEvent(object Sender, TElStringList Prompts, bool[] Echo, TElStringList Responses)

[VB.NET]
    Event OnAuthenticationKeyboard As TSSHAuthenticationKeyboardEvent
    Delegate Sub TSSHAuthenticationKeyboardEvent(ByVal Sender As Object, ByVal Prompts As TElStringList, ByVal Echo As Boolean(), ByVal Responses As TElStringList)

[Pascal]
    property OnAuthenticationKeyboard : TSSHAuthenticationKeyboardEvent;
    TSSHAuthenticationKeyboardEvent = procedure (Sender: TObject; Prompts : TStringList; Echo : TBits; Responses : TStringList) of object;

[VB6]
    Event IElSimpleSSHClientXEvents.OnAuthenticationKeyboard(Prompts As IElStringListX, Echo, Responses As IElStringListX)

[ActiveX]
     void IElSimpleSSHClientXEvents.OnAuthenticationKeyboard([in] IElStringListX * Prompts, [in] VARIANT Echo, [in] IElStringListX * Responses);

[DLL]
    not implemented;
 
 

Parameters

  • Prompts - The list of prompts sent by the server
  • Echo - The list of flags which specify which responses should be echoed on screen
  • Responses - The list of responses entered by user
 
 

Description

    This event is fired when the keyboard-interactive authentication type is chosen by server. According to this authentication type, server should send a number of prompts to the client, and the client should respond to each prompt with a text line. The Echo parameter specifies which of client's responses (in case of entering them from console) should be displayed to the user.

 
 

See also:     OnAuthenticationSuccess     OnAuthenticationFailed

 
Contact Us | Terms of Use | Trademarks | Privacy Statement
Copyright (c) 1998-2012, EldoS Corporation