In ASP.NET Core SignalR, how do I send a message from the server to a client?
问题 I've successfully setup a SignalR server and client using the newly released ASP.NET Core 2.1. I built a chat room by making my ChatHub extend Hub : whenever a message comes in from a client, the server blasts it back out via Clients.Others . What I do not yet understand is how to send a message to clients not as a response to an incoming message. If the server is doing work and produces a result, how do I gain access to the Hub in order to message particular clients? (Or do I even need