Open
Description
In MVC & Razor Pages you can all LocalRedirect()
to trigger a redirect to page in the app. This is typically used with return URLs specified in the request, so that a malicious request can't send you off to some other site.
In Blazor we have NavigationManager.NavigateTo()
. Do we need a NavigateToLocal()
?