In previous SignalR versions there was OnReconnected() method in Hub class. But now it's gone and there are only OnConnectedAsync(), OnDisconnectedAsync() methods. How to detect reconnection event in Hub?
As far as I think,you could create a client method and call it from the hub, then, based on the result to determine whether it is reconnection or not.And you could add exception object to check the error message.