Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Sanderson <SteveSandersonMS@users.noreply.github.com>2022-05-26 15:21:59 +0300
committerSteve Sanderson <SteveSandersonMS@users.noreply.github.com>2022-05-26 15:21:59 +0300
commitacd3852e9ffe68d77dd349df70b30183e506981d (patch)
tree1c74cb55857db907f08f5fb5f0722ac1e1b77d36
parenta5794742037142f33ef66c13b74a56bf87099d73 (diff)
-rw-r--r--src/Components/Components/src/NavigationManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Components/Components/src/NavigationManager.cs b/src/Components/Components/src/NavigationManager.cs
index 838a1f7fd0..4f445ea388 100644
--- a/src/Components/Components/src/NavigationManager.cs
+++ b/src/Components/Components/src/NavigationManager.cs
@@ -6,13 +6,13 @@ using Microsoft.AspNetCore.Components.Routing;
namespace Microsoft.AspNetCore.Components
{
- private static readonly char[] UriPathEndChar = new[] { '#', '?' };
-
/// <summary>
/// Provides an abstraction for querying and managing URI navigation.
/// </summary>
public abstract class NavigationManager
{
+ private static readonly char[] UriPathEndChar = new[] { '#', '?' };
+
/// <summary>
/// An event that fires when the navigation location has changed.
/// </summary>