Skip to content

Instantly share code, notes, and snippets.

@mwygoda
Created August 31, 2017 16:54
Show Gist options
  • Select an option

  • Save mwygoda/d778d121b927921499625f816678baa9 to your computer and use it in GitHub Desktop.

Select an option

Save mwygoda/d778d121b927921499625f816678baa9 to your computer and use it in GitHub Desktop.
ChatHub
public class ChatHub : Hub
{
public async Task Send(string name, string message)
{
await Clients.All.InvokeAsync("Send", name, message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment