Discuss this help topic in SecureBlackbox Forum
This event is fired when secure connection is established.
Declaration
[C#]
event TSBOpenConnectionEvent OnOpenConnection;
delegate void TSBOpenConnectionEvent(Object Sender);
[VB.NET]
Event OnOpenConnection As TSBOpenConnectionEvent
Delegate Sub TSBOpenConnectionEvent(ByVal Sender As Object)
[Pascal]
property OnOpenConnection : TSBOpenConnectionEvent;
TSBOpenConnectionEvent = procedure(Sender : TObject) of object;
[C++]
void get_OnOpenConnection(TSBOpenConnectionEvent &pMethodOutResult, void * &pDataOutResult);
void set_OnOpenConnection(TSBOpenConnectionEvent pMethodValue, void * pDataValue);
typedef void (SB_CALLBACK *TSBOpenConnectionEvent)(void * _ObjectData, TObjectHandle Sender);
[PHP]
TSBOpenConnectionEvent|callable|NULL get_OnOpenConnection()
void set_OnOpenConnection(TSBOpenConnectionEvent|callable|NULL $Value)
callable TSBOpenConnectionEvent(TObject $Sender)
[Java]
TSBOpenConnectionEvent getOnOpenConnection();
void setOnOpenConnection(TSBOpenConnectionEvent Value);
TSBOpenConnectionEvent.Callback OnOpenConnection = new TSBOpenConnectionEvent.Callback() {
public void TSBOpenConnectionEventCallback(TObject Sender) {
//...
}
}
Description
This event is fired by
TElSSLClient/TElSSLServer when it has established secure session.
After this event is fired the application can send the data.
Discuss this help topic in SecureBlackbox Forum