Utilizing SignalR
in my application to dynamically refresh specific areas based on updates received from the server via a Hub
.
However, I am encountering an issue where every 5 minutes, the Client pings
for connection which is resulting in data disappearance. I do not want to rely on this constant SignalR Ping
since I am already broadcasting updates to all clients from the server using the following code:
Clients.All.BroadcastNewsCount(ValidNewsCount, SelectedCompany, TypeOfOperation);
Attached below is a screenshot of the Ping: