4 implementations of All
Microsoft.AspNetCore.SignalR.Core (4)
Internal\HubCallerClients.cs (1)
41public IClientProxy All => _hubClients.All;
Internal\HubClients.cs (1)
16public IClientProxy All { get; }
Internal\HubClients`T.cs (1)
19public T All { get; }
Internal\TypedHubClients.cs (1)
20public T All => TypedClientBuilder<T>.Build(_hubClients.All);
6 references to All
Aspire.Hosting.Azure.Tests (1)
AzureSignalREmulatorFunctionalTest.cs (1)
120await serviceHubContext.Clients.All.SendAsync("broadcast", sentMessage, token);
Microsoft.AspNetCore.SignalR.Core (3)
DynamicHubClients.cs (1)
30public dynamic All => new DynamicClientProxy(_clients.All);
Internal\HubCallerClients.cs (1)
41public IClientProxy All => _hubClients.All;
Internal\TypedHubClients.cs (1)
20public T All => TypedClientBuilder<T>.Build(_hubClients.All);
SignalRServerlessWeb (1)
Program.cs (1)
59await hubContext.Clients.All.SendAsync("newMessage", $"Current count is: {count++}", stoppingToken);
SignalRWeb (1)
Hubs\ChatHub.cs (1)
7await Clients.All.SendAsync("ReceiveMessage", user, message);