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