6 references to HubConnectionHandler
Microsoft.AspNetCore.SignalR.Core (6)
HubConnectionHandler.cs (3)
24private readonly ILogger<HubConnectionHandler<THub>> _logger; 39/// Initializes a new instance of the <see cref="HubConnectionHandler{THub}"/> class. 63_logger = loggerFactory.CreateLogger<HubConnectionHandler<THub>>();
SignalRConnectionBuilderExtensions.cs (1)
30return connectionBuilder.UseConnectionHandler<HubConnectionHandler<THub>>();
SignalRDependencyInjectionExtensions.cs (2)
29services.TryAddSingleton(typeof(HubConnectionHandler<>), typeof(HubConnectionHandler<>));