Discuss this help topic in SecureBlackbox Forum
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)
Description
TElSSHClient fires this property
when the authentication process is completed successfully.
This event might be preceded by a couple of
OnAuthenticationFailed events.
Discuss this help topic in SecureBlackbox Forum