Web-Development-with-Blazor.../Chapter12/MyBlog/BlazorWebAssembly/Server/Hubs/BlogNotificationHub.cs

13 lines
272 B
C#
Raw Normal View History

2023-02-17 15:28:17 +01:00
using Data.Models;
using Microsoft.AspNetCore.SignalR;
namespace BlazorWebAssembly.Server.Hubs;
public class BlogNotificationHub : Hub
{
public async Task SendNotification(BlogPost post)
{
await Clients.All.SendAsync("BlogPostChanged", post);
}
}