Discuss this help topic in SecureBlackbox Forum
Reports the receipt of Ping request.
Declaration
[C#]
event TSBWSPongEvent OnPong;
delegate void TSBWSPongEvent(Object Sender);
[VB.NET]
Event OnPong As TSBWSPongEvent
Delegate Sub TSBWSPongEvent(ByVal Sender As Object)
[Pascal]
property OnPong : TSBWSPongEvent;
TSBWSPongEvent = procedure(Sender : TObject) of object;
[C++]
void get_OnPong(TSBWSPongEvent &pMethodOutResult, void * &pDataOutResult);
void set_OnPong(TSBWSPongEvent pMethodValue, void * pDataValue);
typedef void (SB_CALLBACK *TSBWSPongEvent)(void * _ObjectData, TObjectHandle Sender);
[PHP]
TSBWSPongEvent|callable|NULL get_OnPong()
void set_OnPong(TSBWSPongEvent|callable|NULL $Value)
callable TSBWSPongEvent(TObject $Sender)
[Java]
TSBWSPongEvent getOnPong();
void setOnPong(TSBWSPongEvent Value);
TSBWSPongEvent.Callback OnPong = new TSBWSPongEvent.Callback() {
public void TSBWSPongEventCallback(TObject Sender) {
//...
}
}
Description
This event is fired when a Pong (0xA) control frame has been received by the client.
Discuss this help topic in SecureBlackbox Forum