6 references to SendAsync
Aspire.Hosting.Azure.Tests (1)
AzureSignalREmulatorFunctionalTest.cs (1)
120
await serviceHubContext.Clients.All.
SendAsync
("broadcast", sentMessage, token);
Microsoft.AspNetCore.Components.Server (4)
Circuits\CircuitHost.cs (2)
754
await client.
SendAsync
("JS.Error", error);
845
await Client.
SendAsync
("JS.EndUpdateRootComponents", batchId);
Circuits\RemoteJSRuntime.cs (1)
201
await _clientProxy.
SendAsync
("JS.BeginTransmitStream", streamId);
ComponentHub.cs (1)
611
private static Task NotifyClientError(IClientProxy client, string error) => client.
SendAsync
("JS.Error", error);
SignalRServerlessWeb (1)
Program.cs (1)
59
await hubContext.Clients.All.
SendAsync
("newMessage", $"Current count is: {count++}", stoppingToken);