I have a hub with method that is called client-side. This method launches a timer with a delegate that runs every 10 seconds. Since it wouldn\'t make sense to keep running t
If you save your connectionId in your database, you can check this:
var heartBeat = GlobalHost.DependencyResolver.Resolve(); var connectionAlive = heartBeat.GetConnections().FirstOrDefault(c=>c.ConnectionId == connection.ConnectionId); if (connectionAlive.IsAlive) { //Do whatever... }