1 type derived from HubDispatcher
Microsoft.AspNetCore.SignalR.Core (1)
Internal\DefaultHubDispatcher.cs (1)
21internal sealed partial class DefaultHubDispatcher<[DynamicallyAccessedMembers(Hub.DynamicallyAccessedMembers)] THub> : HubDispatcher<THub> where THub : Hub
5 references to HubDispatcher
Microsoft.AspNetCore.SignalR.Core (5)
HubConnectionHandler.cs (1)
29private readonly HubDispatcher<THub> _dispatcher;
Internal\DefaultHubDispatcher.cs (1)
29private readonly ILogger<HubDispatcher<THub>> _logger;
Internal\HubConnectionBinder.cs (2)
10private readonly HubDispatcher<THub> _dispatcher; 14public HubConnectionBinder(HubDispatcher<THub> dispatcher, HubLifetimeManager<THub> lifetimeManager, HubConnectionContext connection)
SignalRDependencyInjectionExtensions.cs (1)
31services.TryAddSingleton(typeof(HubDispatcher<>), typeof(DefaultHubDispatcher<>));