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