2 implementations of Others
Microsoft.AspNetCore.SignalR.Core (2)
Internal\HubCallerClients.cs (1)
39public IClientProxy Others => _hubClients.AllExcept(new[] { _connectionId });
Internal\TypedHubClients.cs (1)
24public T Others => TypedClientBuilder<T>.Build(_hubClients.Others);
6 references to Others
Microsoft.AspNetCore.SignalR.Core (2)
DynamicHubClients.cs (1)
89public dynamic Others => new DynamicClientProxy(_clients.Others);
Internal\TypedHubClients.cs (1)
24public T Others => TypedClientBuilder<T>.Build(_hubClients.Others);
Microsoft.AspNetCore.SignalR.Tests (2)
HubConnectionHandlerTestUtils\Hubs.cs (2)
174return Clients.Others.SendAsync("Send", message); 563return Clients.Others.Send(message);
SignalRSamples (2)
Hubs\Chat.cs (1)
29return Clients.Others.SendAsync("Send", $"{name}: {message}");
Hubs\HubTChat.cs (1)
29return Clients.Others.Send($"{name}: {message}");