Discuss this help topic in SecureBlackbox Forum

TElSimpleSSHServer.OnAuthFailed

TElSimpleSSHServer     See also     


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


Declaration

[C#]
    event TSSHAuthenticationFailedEvent OnAuthFailed;
    delegate void TSSHAuthenticationFailedEvent(Object Sender, int AuthenticationType);

[VB.NET]
    Event OnAuthFailed As TSSHAuthenticationFailedEvent
    Delegate Sub TSSHAuthenticationFailedEvent(ByVal Sender As Object, ByVal AuthenticationType As Integer)

[Pascal]
    under development

[C++]
    void get_OnAuthFailed(TSSHAuthenticationFailedEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnAuthFailed(TSSHAuthenticationFailedEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSSHAuthenticationFailedEvent)(void * _ObjectData, TObjectHandle Sender, int32_t AuthenticationType);

[PHP]
    TSSHAuthenticationFailedEvent|callable|NULL get_OnAuthFailed()
    void set_OnAuthFailed(TSSHAuthenticationFailedEvent|callable|NULL $Value)
    callable TSSHAuthenticationFailedEvent(TObject $Sender, integer $AuthenticationType)

[Java]
    TSSHAuthenticationFailedEvent getOnAuthFailed();
    void setOnAuthFailed(TSSHAuthenticationFailedEvent Value);
    TSSHAuthenticationFailedEvent.Callback OnAuthFailed = new TSSHAuthenticationFailedEvent.Callback() {
        public void TSSHAuthenticationFailedEventCallback(TObject Sender, int AuthenticationType) {
            //...
        }
    }

Parameters

  • AuthenticationType -

Description

    This topic is under development.

See also:     ...    

Discuss this help topic in SecureBlackbox Forum