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