1 implementation of IHubActivator
Microsoft.AspNetCore.SignalR.Core (1)
Internal\DefaultHubActivator.cs (1)
10internal sealed class DefaultHubActivator<[DynamicallyAccessedMembers(Hub.DynamicallyAccessedMembers)] THub> : IHubActivator<THub> where THub : Hub
10 references to IHubActivator
Microsoft.AspNetCore.SignalR.Core (10)
Internal\DefaultHubDispatcher.cs (9)
87var hubActivator = scope.ServiceProvider.GetRequiredService<IHubActivator<THub>>(); 123var hubActivator = scope.ServiceProvider.GetRequiredService<IHubActivator<THub>>(); 326IHubActivator<THub>? hubActivator = null; 330hubActivator = scope.ServiceProvider.GetRequiredService<IHubActivator<THub>>(); 390IHubActivator<THub> hubActivator, 492private static ValueTask CleanupInvocation(HubConnectionContext connection, HubMethodInvocationMessage hubMessage, IHubActivator<THub>? hubActivator, 512IHubActivator<THub> hubActivator, THub hub, CancellationTokenSource? streamCts, HubMethodInvocationMessage hubMethodInvocationMessage, HubMethodDescriptor descriptor)
SignalRDependencyInjectionExtensions.cs (1)
32services.TryAddScoped(typeof(IHubActivator<>), typeof(DefaultHubActivator<>));