Discuss this help topic in SecureBlackbox Forum

TElIdSSHServerIOHandler.OnAuthAttempt

TElIdSSHServerIOHandler     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This event is fired when client requested possibility for authentication.

Declaration

[C#]
    not available

[VB.NET]
    not available

[Pascal]
    property OnAuthAttempt: TSSHAuthAttemptEvent;
    
    TSSHAuthAttemptEvent = procedure(Sender : TObject; const Username : string; AuthType : integer; var Accept: boolean) of object;

[C++]
    not available

[PHP]
    not available

[Java]
    not available

Parameters

  • Username - username (login) on the server
  • AuthType - the type of authentication that client wants to use
  • Accept - set this parameter to True if you want to allow client to use this method.Otherwise authentication will be denied to client.

Authentication type values

Description

    This event is fired before each client's attempt to authenticate.

See also:     OnAuthFailed    

Discuss this help topic in SecureBlackbox Forum