1 type derived from HubDispatcher
Microsoft.AspNetCore.SignalR.Core (1)
Internal\DefaultHubDispatcher.cs (1)
19internal sealed partial class DefaultHubDispatcher<THub> : HubDispatcher<THub> where THub : Hub
5 references to HubDispatcher
Microsoft.AspNetCore.SignalR.Core (5)
HubConnectionHandler.cs (1)
28private readonly HubDispatcher<THub> _dispatcher;
Internal\DefaultHubDispatcher.cs (1)
27private readonly ILogger<HubDispatcher<THub>> _logger;
Internal\HubConnectionBinder.cs (2)
8private readonly HubDispatcher<THub> _dispatcher; 12public HubConnectionBinder(HubDispatcher<THub> dispatcher, HubLifetimeManager<THub> lifetimeManager, HubConnectionContext connection)
SignalRDependencyInjectionExtensions.cs (1)
30services.TryAddSingleton(typeof(HubDispatcher<>), typeof(DefaultHubDispatcher<>));