Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hbulens/5cf52b4a02e42c309dfde7531770498a to your computer and use it in GitHub Desktop.
Save hbulens/5cf52b4a02e42c309dfde7531770498a to your computer and use it in GitHub Desktop.
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