Discuss this help topic in SecureBlackbox Forum
This event is fired when the session closes.
Declaration
[C#]
event TNotifyEvent OnClose;
delegate void TNotifyEvent(Object Sender);
[VB.NET]
Event OnClose As TNotifyEvent
Delegate Sub TNotifyEvent(ByVal Sender As Object)
[Pascal]
property OnClose: TNotifyEvent;
TNotifyEvent = procedure(Sender: TObject) of object;
[C++]
void get_OnClose(TNotifyEvent &pMethodOutResult, void * &pDataOutResult);
void set_OnClose(TNotifyEvent pMethodValue, void * pDataValue);
typedef void (SB_CALLBACK *TNotifyEvent)(void * _ObjectData, TObjectHandle Sender);
[PHP]
TNotifyEvent|callable|NULL get_OnClose()
void set_OnClose(TNotifyEvent|callable|NULL $Value)
callable TNotifyEvent(TObject $Sender)
[Java]
TNotifyEvent getOnClose();
void setOnClose(TNotifyEvent Value);
TNotifyEvent.Callback OnClose = new TNotifyEvent.Callback() {
public void TNotifyEventCallback(TObject Sender) {
//...
}
}
Description
This event is fired by TElSSHCustomForwarding when the session is closed.
Discuss this help topic in SecureBlackbox Forum