Skip to content

Instantly share code, notes, and snippets.

@berkslv
Last active October 20, 2020 13:07
Show Gist options
  • Save berkslv/aa7a8a7e776902c33dd931194a9b645b to your computer and use it in GitHub Desktop.
Save berkslv/aa7a8a7e776902c33dd931194a9b645b to your computer and use it in GitHub Desktop.
ChatHub, only SendAll
using Microsoft.AspNetCore.SignalR;
using WebAPI.Helpers.Models;
public class ChatHub : Hub
{
[HubMethodName("SendMessageToAll")]
public async Task SendMessage(ChatMessage message)
{
await Clients.All.SendAsync("ReceiveMessage", message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment