EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElSimpleSSHClient.OnAuthenticationStart

TElSimpleSSHClient     See also    


 

This event is fired on the very beginning of authentication process.

 
 

Declaration

[C#]
    event TSSHAuthenticationStartEvent OnAuthenticationStart;
    void TSSHAuthenticationStartEvent(object Sender, int SupportedAuths);

[VB.NET]
    Event OnAuthenticationStart As TSSHAuthenticationStartEvent
    Delegate Sub TSSHAuthenticationStartEvent(ByVal Sender As Object, ByVal SupportedAuths As Integer)

[Pascal]
    property OnAuthenticationStart : TSSHAuthenticationStartEvent;
    TSSHAuthenticationStartEvent = procedure (Sender: TObject; SupportedAuths : integer) of object;

[VB6]
    not implemented;

[ActiveX]
    not implemented;

[DLL]
    not implemented;
 
 

Parameters

  • SupportedAuths - supported authentication types
 
 

Possible 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 on the very beginning of authentication process. Use SupportedAuths parameter to get the list of authentication types supported by server. The authentication type is calculated as bitwise OR operation on masks of types that should be enabled.

 
 

See also:     AuthenticationTypes     OnAuthenticationSuccess     OnAuthenticationFailed    

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