Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我SignalR PersistentConnection在我的服务器上使用,从 0.53 更新到 1.0 后,我遇到了一个奇怪的问题。当将客户端添加到组中Groups.Add(id, name),然后向组发送一些数据时,只有第一个连接的客户端接收数据。这似乎与Groups我在 stackoverflow 和 signalr github 上发现的其他问题不相似。期待解决方案。
SignalR
PersistentConnection
Groups.Add(id, name)
Groups
Groups.Add返回一个Task。在向您希望新添加的客户端接收的组发送消息之前,您应该await调用。Groups.Add
Groups.Add
Task
await