Skip to content

Instantly share code, notes, and snippets.

@georgechond94
Created February 20, 2016 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save georgechond94/cd1806d30f780f510206 to your computer and use it in GitHub Desktop.
Save georgechond94/cd1806d30f780f510206 to your computer and use it in GitHub Desktop.
ChatHub
public class ChatHub : Hub
{
public void Send(ChatMessage message)
{
Clients.All.broadcastMessage(message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment