摘要:
SignalR的分组使用十分方便,官方已提供接口封装。如果需要指定或者移除Connection的组时只需操作Groups即可1、添加连接到指定的组.Groups.Add(Context.ConnectionId, 组名称);对应IGroupManager里的interfaceTask Add(string connectionId, string groupName)2、从组移除Connection连接Groups.Remove(Context.ConnectionId, 组名称);对应IGroupManager里的interfaceTask Remove(string connectionI 阅读全文