Discuss this help topic in SecureBlackbox Forum

TElSimpleSSHServer.OnAuthAttempt

TElSimpleSSHServer     See also     


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


Declaration

[C#]
    event TSSHAuthAttemptEvent OnAuthAttempt;
    delegate void TSSHAuthAttemptEvent(Object Sender, string Username, int AuthType, ref bool Accept);

[VB.NET]
    Event OnAuthAttempt As TSSHAuthAttemptEvent
    Delegate Sub TSSHAuthAttemptEvent(ByVal Sender As Object, ByVal Username As String, ByVal AuthType As Integer, ByRef Accept As Boolean)

[Pascal]
    under development

[C++]
    void get_OnAuthAttempt(TSSHAuthAttemptEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnAuthAttempt(TSSHAuthAttemptEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSSHAuthAttemptEvent)(void * _ObjectData, TObjectHandle Sender, const char * pcUsername, int32_t szUsername, int32_t AuthType, int8_t &Accept);

[PHP]
    TSSHAuthAttemptEvent|callable|NULL get_OnAuthAttempt()
    void set_OnAuthAttempt(TSSHAuthAttemptEvent|callable|NULL $Value)
    callable TSSHAuthAttemptEvent(TObject $Sender, string $Username, integer $AuthType, bool &$Accept)

[Java]
    TSSHAuthAttemptEvent getOnAuthAttempt();
    void setOnAuthAttempt(TSSHAuthAttemptEvent Value);
    TSSHAuthAttemptEvent.Callback OnAuthAttempt = new TSSHAuthAttemptEvent.Callback() {
        public void TSSHAuthAttemptEventCallback(TObject Sender, String Username, int AuthType, TSBBoolean Accept) {
            //...
        }
    }

Parameters

  • pcUsername -
  • szUsername -
  • AuthType -
  • Accept -
  • Username -

Description

    This topic is under development.

See also:     ...    

Discuss this help topic in SecureBlackbox Forum