Questions tagged as 'signalr'

0
answers

SignalR Can not read property 'MyHub' of undefined

Good afternoon, I'm trying to apply the SignalR library to a site with Master page in .aspx WebForms, but I'm getting error reading the Hub file. I can not get the site to see such a file. I've run into a website without MasterPage and it works...
asked by 10.01.2018 / 18:31
0
answers

SqlDep_OnChange with SignalR does not work

Follow the code below: NotificationHub: Hub private readonly static ConnectionMapping<string> _connections = new ConnectionMapping<string>(); public void SendNotification(string who) { foreach (var connectionId in _connec...
asked by 02.06.2017 / 03:06
1
answer

Use of SignalIR

I'm developing a chat in SignalIR, and I can only send the messages to all logged in users, using this way: public void Send(string name, string message) { Clients.All.broadcastMessage(name, message); } I would like to send...
asked by 08.11.2016 / 19:08