Discuss this help topic in SecureBlackbox Forum

TElSimpleSSHClient.OnAuthenticationSuccess

TElSimpleSSHClient     See also     


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


This event is fired when authentication process completed successfully

Declaration

[C#]
    event TNotifyEvent OnAuthenticationSuccess;
    delegate void TNotifyEvent(Object Sender);

[VB.NET]
    Event OnAuthenticationSuccess As TNotifyEvent
    Delegate Sub TNotifyEvent(ByVal Sender As Object)

[Pascal]
    property OnAuthenticationSuccess : TNotifyEvent;
    TNotifyEvent = procedure (Sender: TObject) of object;

[C++]
    void get_OnAuthenticationSuccess(TNotifyEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnAuthenticationSuccess(TNotifyEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TNotifyEvent)(void * _ObjectData, TObjectHandle Sender);

[PHP]
    TNotifyEvent|callable|NULL get_OnAuthenticationSuccess()
    void set_OnAuthenticationSuccess(TNotifyEvent|callable|NULL $Value)
    callable TNotifyEvent(TObject $Sender)

[Java]
    TNotifyEvent getOnAuthenticationSuccess();
    void setOnAuthenticationSuccess(TNotifyEvent Value);
    TNotifyEvent.Callback OnAuthenticationSuccess = new TNotifyEvent.Callback() {
        public void TNotifyEventCallback(TObject Sender) {
            //...
        }
    }

Description

    TElSimpleSSHClient fires this property when the authentication process is completed successfully. This event may be preceded by a couple of OnAuthenticationFailed events.

See also:     OnAuthenticationFailed    

Discuss this help topic in SecureBlackbox Forum