Making SignalR Hub Strongly Typed
Learn to make SignalR Hub strongly typed.
Problem
So far, when we’ve been calling clients from the hub, we've used just a normal string to specify the client-side event name that needs to be triggered. But the problem with using a string is that it can contain any arbitrary ...