EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElSimpleSSHClient.OnAuthenticationAttempt

TElSimpleSSHClient     See also    


 

This event is fired when a single authentication attempt is performed.

 
 

Declaration

[C#]
    event TSSHAuthenticationAttemptEvent OnAuthenticationAttempt
    delegate void TSSHAuthenticationAttemptEvent(object Sender, int AuthType, System.Object AuthParam);

[VB.NET]
    Event OnAuthenticationAttempt As TSSHAuthenticationAttemptEvent
    Delegate Sub TSSHAuthenticationAttemptEvent(ByVal Sender As Object, ByVal AuthType As Integer, ByVal AuthParam As System.Object)

[Pascal]
    property OnAuthenticationAttempt : TSSHAuthenticationAttemptEvent;
    TSSHAuthenticationAttemptEvent = procedure (Sender: TObject; AuthType : integer; AuthParam: TObject) of object;

[VB6]
    not implemented;

[ActiveX]
    not implemented;

[DLL]
    not implemented;
 
 

Parameters

  • AuthType - type of authentication
  • AuthParam - parameter which is required for authentication, depending on AuthType
 
 

Authentication types

Definition Value
SSH_AUTH_TYPE_RHOSTS 1 (0x01)
SSH_AUTH_TYPE_PUBLICKEY 2 (0x02)
SSH_AUTH_TYPE_PASSWORD 4 (0x04)
SSH_AUTH_TYPE_HOSTBASED 8 (0x08)
SSH_AUTH_TYPE_KEYBOARD 16 (0x10)
Declared in
[.NET] [Pascal]
Namespace: SBSSHConstants
Assembly: SecureBlackbox.SSHClient
Unit: SBSSHConstants

 
 

Description

    This event is fired when the single authentication attempt is performed. The corresponding parameters contain the authentication type and authentication parameter, e.g., if SSH_AUTH_TYPE_PUBLICKEY authentication is specified, AuthParam will contain the key.

 
 

See also:     AuthenticationTypes OnAuthenticationSuccess OnAuthenticationFailed

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