2 implementations of IHubContext
Microsoft.AspNetCore.SignalR.Core (1)
Microsoft.AspNetCore.SignalR.Tests (1)
12 references to IHubContext
Microsoft.AspNetCore.SignalR.Core (1)
Microsoft.AspNetCore.SignalR.Tests (11)
AddSignalRTests.cs (4)
34serviceCollection.AddSingleton(typeof(IHubContext<,>), typeof(CustomHubContext<,>));
45Assert.IsType<CustomHubContext<CustomTHub, string>>(serviceProvider.GetRequiredService<IHubContext<CustomTHub, string>>());
62serviceCollection.AddSingleton(typeof(IHubContext<,>), typeof(CustomHubContext<,>));
70Assert.IsType<CustomHubContext<CustomTHub, string>>(serviceProvider.GetRequiredService<IHubContext<CustomTHub, string>>());