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)
33public T Group(string groupName)
Internal\TypedHubClients.cs (1)
25public T Group(string groupName)
12 references to Group
Microsoft.AspNetCore.SignalR.Core (3)
DynamicHubClients.cs (1)
61public dynamic Group(string groupName) => new DynamicClientProxy(_clients.Group(groupName));
Internal\HubCallerClients.cs (1)
60return _hubClients.Group(groupName);
Internal\TypedHubClients.cs (1)
27return TypedClientBuilder<T>.Build(_hubClients.Group(groupName));
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (1)
EchoHub.cs (1)
18return Clients.Group(groupName).SendAsync("Echo", message);
Microsoft.AspNetCore.SignalR.Tests (2)
HubConnectionHandlerTestUtils\Hubs.cs (2)
50return Clients.Group(groupName).SendAsync("Send", message); 533return Clients.Group(groupName).Send(message);
SignalRSamples (6)
Hubs\Chat.cs (3)
39return Clients.Group(groupName).SendAsync("Send", $"{name}@{groupName}: {message}"); 51await Clients.Group(groupName).SendAsync("Send", $"{name} joined {groupName}"); 56await Clients.Group(groupName).SendAsync("Send", $"{name} left {groupName}");
Hubs\HubTChat.cs (3)
34return Clients.Group(groupName).Send($"{name}@{groupName}: {message}"); 46await Clients.Group(groupName).Send($"{name} joined {groupName}"); 51await Clients.Group(groupName).Send($"{name} left {groupName}");