2 implementations of INavigationInterception
Microsoft.AspNetCore.Components.Endpoints (1)
DependencyInjection\UnsupportedNavigationInterception.cs (1)
8internal sealed class UnsupportedNavigationInterception : INavigationInterception
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteNavigationInterception.cs (1)
10internal sealed class RemoteNavigationInterception : INavigationInterception
4 references to INavigationInterception
Microsoft.AspNetCore.Components (1)
Routing\Router.cs (1)
47[Inject] private INavigationInterception NavigationInterception { get; set; }
Microsoft.AspNetCore.Components.Endpoints (1)
DependencyInjection\RazorComponentsServiceCollectionExtensions.cs (1)
62services.TryAddScoped<INavigationInterception, UnsupportedNavigationInterception>();
Microsoft.AspNetCore.Components.Server (2)
Circuits\CircuitFactory.cs (1)
55var navigationInterception = (RemoteNavigationInterception)scope.ServiceProvider.GetRequiredService<INavigationInterception>();
DependencyInjection\ComponentServiceCollectionExtensions.cs (1)
110services.AddScoped<INavigationInterception, RemoteNavigationInterception>();