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)
16public T All { get; }
Internal\TypedHubClients.cs (1)
17public T All => TypedClientBuilder<T>.Build(_hubClients.All);
24 references to All
JwtSample (1)
Broadcaster.cs (1)
14Clients.All.SendAsync("Message", sender, message);
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (1)
Hubs.cs (1)
111await Clients.All.SendAsync("Foo", Unserializable.Create());
Microsoft.AspNetCore.SignalR.Client.Tests (1)
TestServerTests.cs (1)
118return Clients.All.SendAsync("Echo", message);
Microsoft.AspNetCore.SignalR.Core (3)
DynamicHubClients.cs (1)
28public dynamic All => new DynamicClientProxy(_clients.All);
Internal\HubCallerClients.cs (1)
41public IClientProxy All => _hubClients.All;
Internal\TypedHubClients.cs (1)
17public T All => TypedClientBuilder<T>.Build(_hubClients.All);
Microsoft.AspNetCore.SignalR.Tests (12)
HubConnectionHandlerTests.cs (4)
222await context.Clients.All.SendAsync("Send", "test"); 233await context.Clients.All.Send("test"); 4548await context.Clients.All.SendAsync("Send", "test"); 4638await context.Clients.All.SendAsync("Send", "test");
HubConnectionHandlerTestUtils\Hubs.cs (8)
70return Clients.All.SendAsync("Broadcast", message); 75return Clients.All.SendAsync("Broadcast", new Result { Message = "test", paramName = "param" }); 80return Clients.All.SendAsync("Array", new[] { 1, 2, 3 }); 553return Clients.All.Broadcast(message); 985await Clients.All.SendAsync("Send", $"{Context.ConnectionId} joined"); 995Clients.All.Send("herp"); 1004await Clients.All.Send($"{Context.ConnectionId} joined"); 1286return Clients.All.SendAsync("Send", new SelfRef());
SignalRSamples (6)
Hubs\Chat.cs (3)
13return Clients.All.SendAsync("Send", $"{name} joined the chat"); 19return Clients.All.SendAsync("Send", $"{name} left the chat"); 24return Clients.All.SendAsync("Send", $"{name}: {message}");
Hubs\HubTChat.cs (3)
13return Clients.All.Send($"{name} joined the chat"); 19return Clients.All.Send($"{name} left the chat"); 24return Clients.All.Send($"{name}: {message}");