1 implementation of IHubContext
Microsoft.AspNetCore.SignalR.Core (1)
Internal\HubContext.cs (1)
6internal sealed class HubContext<THub> : IHubContext, IHubContext<THub> where THub : Hub
3 references to IHubContext
Microsoft.AspNetCore.SignalR.Core (3)
Internal\DefaultHubDispatcher.cs (2)
28private readonly IHubContext<THub> _hubContext; 42public DefaultHubDispatcher(IServiceScopeFactory serviceScopeFactory, IHubContext<THub> hubContext, bool enableDetailedErrors,
SignalRDependencyInjectionExtensions.cs (1)
27services.TryAddSingleton(typeof(IHubContext<>), typeof(HubContext<>));