4 implementations of Group
Microsoft.AspNetCore.SignalR.Core (4)
Internal\HubCallerClients.cs (1)
58
public IClientProxy
Group
(string groupName)
Internal\HubClients.cs (1)
29
public IClientProxy
Group
(string groupName)
Internal\HubClients`T.cs (1)
36
public T
Group
(string groupName)
Internal\TypedHubClients.cs (1)
28
public T
Group
(string groupName)
12 references to Group
Microsoft.AspNetCore.SignalR.Core (3)
DynamicHubClients.cs (1)
63
public dynamic Group(string groupName) => new DynamicClientProxy(_clients.
Group
(groupName));
Internal\HubCallerClients.cs (1)
60
return _hubClients.
Group
(groupName);
Internal\TypedHubClients.cs (1)
30
return TypedClientBuilder<T>.Build(_hubClients.
Group
(groupName));
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (1)
EchoHub.cs (1)
18
return Clients.
Group
(groupName).SendAsync("Echo", message);
Microsoft.AspNetCore.SignalR.Tests (2)
HubConnectionHandlerTestUtils\Hubs.cs (2)
50
return Clients.
Group
(groupName).SendAsync("Send", message);
533
return Clients.
Group
(groupName).Send(message);
SignalRSamples (6)
Hubs\Chat.cs (3)
39
return Clients.
Group
(groupName).SendAsync("Send", $"{name}@{groupName}: {message}");
51
await Clients.
Group
(groupName).SendAsync("Send", $"{name} joined {groupName}");
56
await Clients.
Group
(groupName).SendAsync("Send", $"{name} left {groupName}");
Hubs\HubTChat.cs (3)
34
return Clients.
Group
(groupName).Send($"{name}@{groupName}: {message}");
46
await Clients.
Group
(groupName).Send($"{name} joined {groupName}");
51
await Clients.
Group
(groupName).Send($"{name} left {groupName}");