5

Is there a way to send a message to all connected clients except the client that is sending the message.

Yavor Shahpasov
  • 1,453
  • 1
  • 12
  • 19

2 Answers2

5

In 2014 you can select clients with Hubs.

The Others property publishes to all clients except the calling client.

Clients.Others.addContosoChatMessageToPage(name, message);
jpierson
  • 16,435
  • 14
  • 105
  • 149
XenoPuTtSs
  • 1,254
  • 1
  • 11
  • 31
4

Not yet, the only thing you can do today is filter on the client side.

davidfowl
  • 37,120
  • 7
  • 93
  • 103