using Microsoft.AspNet.SignalR; namespace Ds.Module.SignalR { public class NotificationHub : Hub { public void SendNotification(string userId, string message) { // 发送通知给指定用户 Clients.User(userId).receiveNotification(message); //用法 //var hubContext = GlobalHost.ConnectionManager.GetHubContext(); //hubContext.Clients.User(userId).receiveNotification(message); } } }