Discuss this help topic in SecureBlackbox Forum
This event is fired when authentication process completed successfully
Declaration
[C#/Java]
event TNotifyEvent OnAuthenticationSuccess;
[VB.NET]
Event OnAuthenticationSuccess As TNotifyEvent
[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)
Description
TElSimpleSSHClient fires this property
when the authentication process is completed successfully.
This event may be preceded by a couple of OnAuthenticationFailed events.
Discuss this help topic in SecureBlackbox Forum