8 references to HubConnectionHandler
Microsoft.AspNetCore.SignalR.Core (8)
HubConnectionHandler.cs (5)
26private readonly ILogger<HubConnectionHandler<THub>> _logger; 41/// Initializes a new instance of the <see cref="HubConnectionHandler{THub}"/> class. 65_logger = loggerFactory.CreateLogger<HubConnectionHandler<THub>>(); 221HubConnectionHandler<THub> handler, 225public HubConnectionHandler<THub> Handler { get; } = handler;
SignalRConnectionBuilderExtensions.cs (1)
30return connectionBuilder.UseConnectionHandler<HubConnectionHandler<THub>>();
SignalRDependencyInjectionExtensions.cs (2)
29services.TryAddSingleton(typeof(HubConnectionHandler<>), typeof(HubConnectionHandler<>));