4 implementations of Group
Microsoft.AspNetCore.SignalR.Core (4)
Internal\HubCallerClients.cs (1)
58public IClientProxy Group(string groupName)
Internal\HubClients.cs (1)
29public IClientProxy Group(string groupName)
Internal\HubClients`T.cs (1)
36public T Group(string groupName)
Internal\TypedHubClients.cs (1)
28public T Group(string groupName)
3 references to Group
Microsoft.AspNetCore.SignalR.Core (3)
DynamicHubClients.cs (1)
63public dynamic Group(string groupName) => new DynamicClientProxy(_clients.Group(groupName));
Internal\HubCallerClients.cs (1)
60return _hubClients.Group(groupName);
Internal\TypedHubClients.cs (1)
30return TypedClientBuilder<T>.Build(_hubClients.Group(groupName));