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