2 implementations of IScrollToLocationHash
Microsoft.AspNetCore.Components.Endpoints (1)
DependencyInjection\UnsupportedScrollToLocationHash.cs (1)
8internal sealed class UnsupportedScrollToLocationHash : IScrollToLocationHash
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteScrollToLocationHash.cs (1)
10internal sealed class RemoteScrollToLocationHash : IScrollToLocationHash
4 references to IScrollToLocationHash
Microsoft.AspNetCore.Components (1)
Routing\Router.cs (1)
49[Inject] private IScrollToLocationHash ScrollToLocationHash { get; set; }
Microsoft.AspNetCore.Components.Endpoints (1)
DependencyInjection\RazorComponentsServiceCollectionExtensions.cs (1)
63services.TryAddScoped<IScrollToLocationHash, UnsupportedScrollToLocationHash>();
Microsoft.AspNetCore.Components.Server (2)
Circuits\CircuitFactory.cs (1)
56var scrollToLocationHash = (RemoteScrollToLocationHash)scope.ServiceProvider.GetRequiredService<IScrollToLocationHash>();
DependencyInjection\ComponentServiceCollectionExtensions.cs (1)
111services.AddScoped<IScrollToLocationHash, RemoteScrollToLocationHash>();