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; 376hubActivator = scope.ServiceProvider.GetRequiredService<IHubActivator<THub>>(); 438IHubActivator<THub> hubActivator, 569private static ValueTask CleanupInvocation(HubConnectionContext connection, HubMethodInvocationMessage hubMessage, long? streamOwner, IHubActivator<THub>? hubActivator, 589IHubActivator<THub> hubActivator, THub hub, CancellationTokenSource? streamCts, HubMethodInvocationMessage hubMethodInvocationMessage,
SignalRDependencyInjectionExtensions.cs (1)
32services.TryAddScoped(typeof(IHubActivator<>), typeof(DefaultHubActivator<>));