namespace Ds.Module.SignalR { public class NotificationService { public void SendNotification(string userId, string message) { //var hubContext = GlobalHost.ConnectionManager.GetHubContext(); //hubContext.Clients.User(userId).receiveNotification(message); } } }