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 和 asp.net 的情况。我的实现与asp.net上的聊天示例非常相似
我的问题是如何从后面的代码发送?所有示例都使用旧版本的 SignalR。
在您的集线器内创建一个void这样的:
void
public static void UpdateClients() { var context = GlobalHost.ConnectionManager.GetHubContext<NameOfHub>(); context.Clients.All.ClientSideFunction(); }
然后用作:
NameOfHub.UpdateClients();