Discuss this help topic in SecureBlackbox Forum

TElWebSocketBase.OnPong

TElWebSocketBase     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


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.

See also:     Ping    

Discuss this help topic in SecureBlackbox Forum