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