Skip to content

Instantly share code, notes, and snippets.

@nishanc
Created August 4, 2023 20:43
Show Gist options
  • Save nishanc/00be8db1b6d85c7526a6821cb3b6fe0b to your computer and use it in GitHub Desktop.
Save nishanc/00be8db1b6d85c7526a6821cb3b6fe0b to your computer and use it in GitHub Desktop.
using Microsoft.AspNetCore.SignalR;
namespace ServerApp.SignalR;
public class NotificationHub : Hub<INotificationHub>
{
public async Task SendNotificationToUserAsync(string message)
{
await Clients.All.SendNotificationAsync(message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment