예제 #1
0
 public static async Task PublishNotification <THub>(
     this IHubContext <THub> hub,
     IClientNotification notification
     ) where THub : Hub
 {
     await hub.Clients.All.SendAsync("notification", notification.GetType().FullName, notification);
 }