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