I have a WampSharp client which successfully pings my Wamp WS server created in python every 1 minute.
I am sending a pong message from the server to the client on the receipt of the ping.
I would like to know whether there is any handler which will handle the receipt of the pong message in WampSharp client so that I could perform certain tasks at client side?
And if there isn't any separate handler for the pong message then is there any handler to handle the data received from the server like in traditional WebSocket client which is as follows?
webSocket.MessageReceived += new EventHandler<MessageReceivedEventArgs>(webSocket_MessageReceived);
Thanks in advance.