使用 Signalr/PersistentConnection 将服务器消息发送到连接的客户端
我正在使用 SignalR/PersistentConnection,而不是集线器。
我想从服务器向客户端发送消息。我有客户端 ID 来发送它,但是如何从服务器向客户端发送消息?
就像,当服务器上发生某些事件时,我们希望向特定用户发送通知。
有什么想法吗?
I´m using SignalR/PersistentConnection, not the Hub.
I want to send a message from the server to client. I have the client id to send it, but how can I send a message from server to the client?
Like, when some event happens on server, we want send a notification to a particular user.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
github 页面展示了如何使用 PersistentConnections 来执行此操作。
Global.asax
然后在客户端:
The github page shows how to do this using PersistentConnections.
Global.asax
Then on the client:
可能是帮助中的AddToGroup函数
在服务器端
将客户端放入不同的通道
然后他们可以在不同的通道中发送消息
May be the AddToGroup function in the helps
in Server side
Put the clients in to different channels
Then they Can send out message in different channel
https://github.com/SignalR/SignalR/wiki/PersistentConnection