Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
using Microsoft.AspNet.SignalR;
using Microsoft.AspNet.SignalR.Hubs;
public class ChatHub : Hub
{
[HubMethodName("sendMessages")]
public static void SendMessages()
{
IHubContext context = GlobalHost.ConnectionManager.GetHubContext<ChatHub>();
context.Clients.All.updateMessages();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment