4 references to IVoidReturningTypedHubClient
Microsoft.AspNetCore.SignalR.Tests (4)
HubConnectionHandlerTests.cs (3)
244
serviceProvider.GetRequiredService<IHubContext<SimpleVoidReturningTypedHub,
IVoidReturningTypedHubClient
>>());
245
Assert.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)
990
public class SimpleVoidReturningTypedHub : Hub<
IVoidReturningTypedHubClient
>