4 references to IVoidReturningTypedHubClient
Microsoft.AspNetCore.SignalR.Tests (4)
HubConnectionHandlerTests.cs (3)
244serviceProvider.GetRequiredService<IHubContext<SimpleVoidReturningTypedHub, IVoidReturningTypedHubClient>>()); 245Assert.Equal($"Cannot generate proxy implementation for '{typeof(IVoidReturningTypedHubClient).FullName}.{nameof(IVoidReturningTypedHubClient.Send)}'. All client proxy methods must return '{typeof(Task).FullName}' or 'System.Threading.Tasks.Task<T>'.", ex.Message);
HubConnectionHandlerTestUtils\Hubs.cs (1)
990public class SimpleVoidReturningTypedHub : Hub<IVoidReturningTypedHubClient>