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
12 references to IHubActivator
Microsoft.AspNetCore.SignalR.Core (12)
Internal\DefaultHubDispatcher.cs (11)
87var hubActivator = scope.ServiceProvider.GetRequiredService<IHubActivator<THub>>(); 124var hubActivator = scope.ServiceProvider.GetRequiredService<IHubActivator<THub>>(); 171var hubActivator = scope.ServiceProvider.GetRequiredService<IHubActivator<THub>>(); 371IHubActivator<THub>? hubActivator = null; 375hubActivator = scope.ServiceProvider.GetRequiredService<IHubActivator<THub>>(); 437IHubActivator<THub> hubActivator, 567private static ValueTask CleanupInvocation(HubConnectionContext connection, HubMethodInvocationMessage hubMessage, IHubActivator<THub>? hubActivator, 587IHubActivator<THub> hubActivator, THub hub, CancellationTokenSource? streamCts, HubMethodInvocationMessage hubMethodInvocationMessage, HubMethodDescriptor descriptor)
SignalRDependencyInjectionExtensions.cs (1)
32services.TryAddScoped(typeof(IHubActivator<>), typeof(DefaultHubActivator<>));