SignalR
await _hubContext.Groups.AddToGroupAsync(HttpContext.Connection.Id, "MND");
await _hubContext.Clients.Group("MND").SendAsync("InvokeNotification", User.Identity.Name, "responseMessage");
Not working and I can't find out whether the user is added to group or not
0 Replies