diff --git a/src/Components/Endpoints/src/DependencyInjection/HttpNavigationManager.cs b/src/Components/Endpoints/src/DependencyInjection/HttpNavigationManager.cs index 3edcb925a6fb..e9bb98f2d1c2 100644 --- a/src/Components/Endpoints/src/DependencyInjection/HttpNavigationManager.cs +++ b/src/Components/Endpoints/src/DependencyInjection/HttpNavigationManager.cs @@ -11,7 +11,7 @@ internal sealed class HttpNavigationManager : NavigationManager, IHostEnvironmen protected override void NavigateToCore(string uri, NavigationOptions options) { - var absoluteUriString = ToAbsoluteUri(uri).ToString(); + var absoluteUriString = ToAbsoluteUri(uri).AbsoluteUri; throw new NavigationException(absoluteUriString); } } diff --git a/src/Components/Endpoints/test/RazorComponentResultTest.cs b/src/Components/Endpoints/test/RazorComponentResultTest.cs index 583afd3c9f4d..6c0f0e96d116 100644 --- a/src/Components/Endpoints/test/RazorComponentResultTest.cs +++ b/src/Components/Endpoints/test/RazorComponentResultTest.cs @@ -516,7 +516,7 @@ class FakeNavigationManager : NavigationManager, IHostEnvironmentNavigationManag protected override void NavigateToCore(string uri, NavigationOptions options) { // Equivalent to what RemoteNavigationManager would do - var absoluteUriString = ToAbsoluteUri(uri).ToString(); + var absoluteUriString = ToAbsoluteUri(uri).AbsoluteUri; throw new NavigationException(absoluteUriString); } } diff --git a/src/Components/Server/src/Circuits/RemoteNavigationManager.cs b/src/Components/Server/src/Circuits/RemoteNavigationManager.cs index aec11e7d68db..a2a148945ee1 100644 --- a/src/Components/Server/src/Circuits/RemoteNavigationManager.cs +++ b/src/Components/Server/src/Circuits/RemoteNavigationManager.cs @@ -87,7 +87,7 @@ protected override void NavigateToCore(string uri, NavigationOptions options) if (_jsRuntime == null) { - var absoluteUriString = ToAbsoluteUri(uri).ToString(); + var absoluteUriString = ToAbsoluteUri(uri).AbsoluteUri; throw new NavigationException(absoluteUriString); } @@ -128,7 +128,7 @@ public override void Refresh(bool forceReload = false) { if (_jsRuntime == null) { - var absoluteUriString = ToAbsoluteUri(Uri).ToString(); + var absoluteUriString = ToAbsoluteUri(Uri).AbsoluteUri; throw new NavigationException(absoluteUriString); } diff --git a/src/Components/test/E2ETest/ServerRenderingTests/RedirectionTest.cs b/src/Components/test/E2ETest/ServerRenderingTests/RedirectionTest.cs index a00568c2033b..87edff6d80b2 100644 --- a/src/Components/test/E2ETest/ServerRenderingTests/RedirectionTest.cs +++ b/src/Components/test/E2ETest/ServerRenderingTests/RedirectionTest.cs @@ -39,7 +39,7 @@ public void RedirectStreamingGetToInternal() AssertElementRemoved(_originalH1Element); Browser.Equal("Scroll to hash", () => Browser.Exists(By.TagName("h1")).Text); Browser.True(() => Browser.GetScrollY() > 500); - Assert.EndsWith("/subdir/nav/scroll-to-hash#some-content", Browser.Url); + Assert.EndsWith("/subdir/nav/scroll-to-hash?foo=%F0%9F%99%82#some-content", Browser.Url); // See that 'back' takes you to the place from before the redirection Browser.Navigate().Back(); @@ -61,7 +61,7 @@ public void RedirectStreamingPostToInternal() AssertElementRemoved(_originalH1Element); Browser.Equal("Scroll to hash", () => Browser.Exists(By.TagName("h1")).Text); Browser.True(() => Browser.GetScrollY() > 500); - Assert.EndsWith("/subdir/nav/scroll-to-hash#some-content", Browser.Url); + Assert.EndsWith("/subdir/nav/scroll-to-hash?foo=%F0%9F%99%82#some-content", Browser.Url); // See that 'back' takes you to the place from before the redirection Browser.Navigate().Back(); @@ -87,7 +87,7 @@ public void RedirectEnhancedGetToInternal() Browser.Exists(By.LinkText("Enhanced GET with internal redirection")).Click(); Browser.Equal("Scroll to hash", () => _originalH1Element.Text); - Assert.EndsWith("/subdir/nav/scroll-to-hash", Browser.Url); + Assert.EndsWith("/subdir/nav/scroll-to-hash?foo=%F0%9F%99%82", Browser.Url); // See that 'back' takes you to the place from before the redirection Browser.Navigate().Back(); @@ -108,7 +108,7 @@ public void RedirectEnhancedPostToInternal() // See above for why enhanced nav doesn't support preserving the hash Browser.Exists(By.CssSelector("#form-enhanced-internal button")).Click(); Browser.Equal("Scroll to hash", () => _originalH1Element.Text); - Assert.EndsWith("/subdir/nav/scroll-to-hash", Browser.Url); + Assert.EndsWith("/subdir/nav/scroll-to-hash?foo=%F0%9F%99%82", Browser.Url); // See that 'back' takes you to the place from before the redirection Browser.Navigate().Back(); @@ -129,7 +129,7 @@ public void RedirectStreamingEnhancedGetToInternal() // See above for why enhanced nav doesn't support preserving the hash Browser.Exists(By.LinkText("Streaming enhanced GET with internal redirection")).Click(); Browser.Equal("Scroll to hash", () => _originalH1Element.Text); - Assert.EndsWith("/subdir/nav/scroll-to-hash", Browser.Url); + Assert.EndsWith("/subdir/nav/scroll-to-hash?foo=%F0%9F%99%82", Browser.Url); // See that 'back' takes you to the place from before the redirection Browser.Navigate().Back(); @@ -150,7 +150,7 @@ public void RedirectStreamingEnhancedPostToInternal() // See above for why enhanced nav doesn't support preserving the hash Browser.Exists(By.CssSelector("#form-streaming-enhanced-internal button")).Click(); Browser.Equal("Scroll to hash", () => _originalH1Element.Text); - Assert.EndsWith("/subdir/nav/scroll-to-hash", Browser.Url); + Assert.EndsWith("/subdir/nav/scroll-to-hash?foo=%F0%9F%99%82", Browser.Url); // See that 'back' takes you to the place from before the redirection Browser.Navigate().Back(); diff --git a/src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Redirections/RedirectGet.razor b/src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Redirections/RedirectGet.razor index ba6d51723809..3599e2f43fd2 100644 --- a/src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Redirections/RedirectGet.razor +++ b/src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Redirections/RedirectGet.razor @@ -10,6 +10,6 @@ protected override async Task OnInitializedAsync() { await Task.Delay(500); - Nav.NavigateTo(External ? "https://microsoft.com" : "nav/scroll-to-hash#some-content"); + Nav.NavigateTo(External ? "https://microsoft.com?foo=🙂" : "nav/scroll-to-hash?foo=🙂#some-content"); } } diff --git a/src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Redirections/RedirectPost.razor b/src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Redirections/RedirectPost.razor index 17e9a7fe52c2..2377d4ba03cf 100644 --- a/src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Redirections/RedirectPost.razor +++ b/src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Redirections/RedirectPost.razor @@ -12,6 +12,6 @@ private async Task DoRedirectionAsync() { await Task.Delay(500); - Nav.NavigateTo(External ? "https://microsoft.com" : "nav/scroll-to-hash#some-content"); + Nav.NavigateTo(External ? "https://microsoft.com?foo=🙂" : "nav/scroll-to-hash?foo=🙂#some-content"); } } diff --git a/src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Redirections/RedirectStreamingGet.razor b/src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Redirections/RedirectStreamingGet.razor index caa527131b53..b296be65f14c 100644 --- a/src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Redirections/RedirectStreamingGet.razor +++ b/src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Redirections/RedirectStreamingGet.razor @@ -11,6 +11,6 @@ protected override async Task OnInitializedAsync() { await Task.Delay(500); - Nav.NavigateTo(External ? "https://microsoft.com" : "nav/scroll-to-hash#some-content"); + Nav.NavigateTo(External ? "https://microsoft.com?foo=🙂" : "nav/scroll-to-hash?foo=🙂#some-content"); } } diff --git a/src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Redirections/RedirectStreamingPost.razor b/src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Redirections/RedirectStreamingPost.razor index 64f0ef807890..cd2709b4c2ae 100644 --- a/src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Redirections/RedirectStreamingPost.razor +++ b/src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Redirections/RedirectStreamingPost.razor @@ -13,6 +13,6 @@ private async Task DoRedirectionAsync() { await Task.Delay(500); - Nav.NavigateTo(External ? "https://microsoft.com" : "nav/scroll-to-hash#some-content"); + Nav.NavigateTo(External ? "https://microsoft.com?foo=🙂" : "nav/scroll-to-hash?foo=🙂#some-content"); } }