I\'m trying to add SignalR to my project (ASPNET MVC 4). But I can\'t make it work.
In the below image you can see the error I\'m receiving.
Your hub classes must be defined as public. For example:
class ChatHub : Hub
should actually be
public class ChatHub : Hub