8 references to NotifyLocationChangingAsync
Microsoft.AspNetCore.Components (1)
NavigationManager.cs (1)
469/// <see cref="NotifyLocationChangingAsync(string, string?, bool)"/>.
Microsoft.AspNetCore.Components.Server (2)
Circuits\RemoteNavigationManager.cs (2)
79return await NotifyLocationChangingAsync(uri, state, intercepted); 100var shouldContinueNavigation = await NotifyLocationChangingAsync(uri, options.HistoryEntryState, false);
Microsoft.AspNetCore.Components.Tests (1)
NavigationManagerTest.cs (1)
888=> await NotifyLocationChangingAsync(uri, state, isNavigationIntercepted);
Microsoft.AspNetCore.Components.WebAssembly (2)
Services\WebAssemblyNavigationManager.cs (2)
48return await NotifyLocationChangingAsync(uri, state, intercepted); 63var shouldContinueNavigation = await NotifyLocationChangingAsync(uri, options.HistoryEntryState, false);
Microsoft.AspNetCore.Components.WebView (2)
Services\WebViewNavigationManager.cs (2)
40var shouldContinueNavigation = await NotifyLocationChangingAsync(uri, state, intercepted); 67var shouldContinueNavigation = await NotifyLocationChangingAsync(uri, options.HistoryEntryState, false);