4 implementations of Groups
Microsoft.AspNetCore.SignalR.Core (4)
Internal\HubCallerClients.cs (1)
63
public IClientProxy
Groups
(IReadOnlyList<string> groupNames)
Internal\HubClients.cs (1)
44
public IClientProxy
Groups
(IReadOnlyList<string> groupNames)
Internal\HubClients`T.cs (1)
46
public T
Groups
(IReadOnlyList<string> groupNames)
Internal\TypedHubClients.cs (1)
43
public T
Groups
(IReadOnlyList<string> groupNames)
14 references to Groups
Microsoft.AspNetCore.SignalR.Core (12)
DynamicHubClients.cs (1)
70
public dynamic Groups(IReadOnlyList<string> groupNames) => new DynamicClientProxy(_clients.
Groups
(groupNames));
HubClientsExtensions.cs (9)
275
return hubClients.
Groups
(new[] { group1 });
287
return hubClients.
Groups
(new[] { group1, group2 });
300
return hubClients.
Groups
(new[] { group1, group2, group3 });
314
return hubClients.
Groups
(new[] { group1, group2, group3, group4 });
329
return hubClients.
Groups
(new[] { group1, group2, group3, group4, group5 });
345
return hubClients.
Groups
(new[] { group1, group2, group3, group4, group5, group6 });
362
return hubClients.
Groups
(new[] { group1, group2, group3, group4, group5, group6, group7 });
380
return hubClients.
Groups
(new[] { group1, group2, group3, group4, group5, group6, group7, group8 });
391
return hubClients.
Groups
(groupNames.ToList());
Internal\HubCallerClients.cs (1)
65
return _hubClients.
Groups
(groupNames);
Internal\TypedHubClients.cs (1)
45
return TypedClientBuilder<T>.Build(_hubClients.
Groups
(groupNames));
Microsoft.AspNetCore.SignalR.Tests (2)
HubConnectionHandlerTestUtils\Hubs.cs (2)
60
return Clients.
Groups
(groupNames).SendAsync("Send", message);
543
return Clients.
Groups
(groupNames).Send(message);