Discuss this help topic in SecureBlackbox Forum
This event signals a successful authentication.
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
This event is fired when the authentication process is completed successfully.
It may be preceded by a couple of OnAuthenticationFailed events.
Discuss this help topic in SecureBlackbox Forum