How Can I Send Message To specific User with signalR
问题 I have some problem with signalR, I can not send message to specific User From Hub. I want to do like this: public void Send(string userToId, string userForId, string message) { IHubContext context = GlobalHost.ConnectionManager.GetHubContext<ChatHubs>(); //userForId - it is Session["UserId"] context.Clients.User(userForId).updateMessages(message); } I have already read this topic: http://www.asp.net/signalr/overview/guide-to-the-api/mapping-users-to-connections , but It's not clear for me,