3 instantiations of HubContext
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionHandler.cs (1)
99new HubContext<THub>(lifetimeManager),
Microsoft.AspNetCore.SignalR.Microbenchmarks (2)
BroadcastBenchmark.cs (1)
58_hubContext = new HubContext<Hub>(_hubLifetimeManager);
DefaultHubDispatcherBenchmark.cs (1)
35new HubContext<TestHub>(hubLifetimeManager),
2 references to HubContext
Microsoft.AspNetCore.SignalR.Core (1)
SignalRDependencyInjectionExtensions.cs (1)
27services.TryAddSingleton(typeof(IHubContext<>), typeof(HubContext<>));
Microsoft.AspNetCore.SignalR.Microbenchmarks (1)
BroadcastBenchmark.cs (1)
17private HubContext<Hub> _hubContext;