2 implementations of OthersInGroup
Microsoft.AspNetCore.SignalR.Core (2)
Internal\HubCallerClients.cs (1)
68
public IClientProxy
OthersInGroup
(string groupName)
Internal\TypedHubClients.cs (1)
48
public T
OthersInGroup
(string groupName)
6 references to OthersInGroup
Microsoft.AspNetCore.SignalR.Core (2)
DynamicHubClients.cs (1)
84
public dynamic OthersInGroup(string groupName) => new DynamicClientProxy(_clients.
OthersInGroup
(groupName));
Internal\TypedHubClients.cs (1)
50
return TypedClientBuilder<T>.Build(_hubClients.
OthersInGroup
(groupName));
Microsoft.AspNetCore.SignalR.Tests (2)
HubConnectionHandlerTestUtils\Hubs.cs (2)
65
return Clients.
OthersInGroup
(groupName).SendAsync("Send", message);
548
return Clients.
OthersInGroup
(groupName).Send(message);
SignalRSamples (2)
Hubs\Chat.cs (1)
44
return Clients.
OthersInGroup
(groupName).SendAsync("Send", $"{name}@{groupName}: {message}");
Hubs\HubTChat.cs (1)
39
return Clients.
OthersInGroup
(groupName).Send($"{name}@{groupName}: {message}");