4 references to InvokeAsync
Microsoft.AspNetCore.SignalR.Tests (3)
ClientProxyTests.cs (1)
216var ex = await Assert.ThrowsAsync<NotImplementedException>(async () => await proxy.InvokeAsync<int>("method", cancellationToken: default)).DefaultTimeout();
HubConnectionHandlerTestUtils\Hubs.cs (2)
1313await Clients.Caller.InvokeAsync<int>("Test", cancellationToken: default); 1321await Clients.Caller.InvokeAsync<int>("Test", cancellationToken: default);
SignalR.Client.FunctionalTestApp (1)
Startup.cs (1)
250var result = await hubContext.Clients.Client(id).InvokeAsync<int>("Result", cancellationToken: default);