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