Skip to content

Instantly share code, notes, and snippets.

@mwygoda
Created August 31, 2017 07:27
Show Gist options
  • Select an option

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

Select an option

Save mwygoda/67ea22dcd13480bb89f1130b94a1f02b to your computer and use it in GitHub Desktop.
ChatHub.cs
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