5 references to SendAsync
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (2)
Hubs.cs (2)
38await Clients.Client(Context.ConnectionId).SendAsync("NoClientHandler"); 312return Clients.Caller.SendAsync("NewProtocolMethodClient");
Microsoft.AspNetCore.SignalR.Microbenchmarks (2)
BroadcastBenchmark.cs (2)
64return _hubContext.Clients.Group(TestGroupName).SendAsync("Method"); 70return _hubContext.Clients.All.SendAsync("Method");
SignalR.Client.FunctionalTestApp (1)
TestHub.cs (1)
77await ((IHubContext<TestHub>)state).Clients.Client(connectionId).SendAsync("StreamCanceled");