diff --git a/src/BlazorNavigationManagerExtensions/BlazorNavigationManagerExtensions.csproj b/src/BlazorNavigationManagerExtensions/BlazorNavigationManagerExtensions.csproj index 5f57ca5..393b523 100644 --- a/src/BlazorNavigationManagerExtensions/BlazorNavigationManagerExtensions.csproj +++ b/src/BlazorNavigationManagerExtensions/BlazorNavigationManagerExtensions.csproj @@ -26,6 +26,11 @@ true + D:\bbarrette\Documents\Source\BracketShow\BlazorNavigationManagerExtensions\src\BlazorNavigationManagerExtensions\BlazorNavigationManagerExtensions.xml + + + + true diff --git a/src/BlazorNavigationManagerExtensions/BlazorNavigationManagerExtensions.xml b/src/BlazorNavigationManagerExtensions/BlazorNavigationManagerExtensions.xml new file mode 100644 index 0000000..cfc7dab --- /dev/null +++ b/src/BlazorNavigationManagerExtensions/BlazorNavigationManagerExtensions.xml @@ -0,0 +1,24 @@ + + + + BlazorNavigationManagerExtensions + + + + + Navigates to the specified URI with the given query string parameters. + + The NavigationManager instance. + The destination URI. This can be absolute, or relative to the base URI (as returned by Microsoft.AspNetCore.Components.NavigationManager.BaseUri). + The query string parameters, with the key representing the parameter name and the value for the value itself. + If true, bypasses client-side routing and forces the browser to load the new page from the server, + whether or not the URI would normally be handled by the client-side router. + + + + Reloads the application to the current URI. + + The NavigationManager instance. + + + diff --git a/tests/BlazorNavigationManagerExtensions.Tests/GlobalSuppressions.cs b/tests/BlazorNavigationManagerExtensions.Tests/GlobalSuppressions.cs index 093b0a0..ad8893a 100644 --- a/tests/BlazorNavigationManagerExtensions.Tests/GlobalSuppressions.cs +++ b/tests/BlazorNavigationManagerExtensions.Tests/GlobalSuppressions.cs @@ -9,3 +9,4 @@ [assembly: SuppressMessage("Design", "CA1056:URI-like properties should not be strings", Justification = "Tolerated since we are comparing the string with the route of the page that is not used as a Uri", Scope = "type", Target = "BlazorNavigationManagerExtensions.Fixtures.TestNavigationManager")] [assembly: SuppressMessage("Design", "CA1056:URI-like properties should not be strings", Justification = "Tolerated since we are comparing the string with the route of the page that is not used as a Uri", Scope = "type", Target = "BlazorNavigationManagerExtensions.Fixtures.TestNavigationManagerFixture")] [assembly: SuppressMessage("Design", "CA1054:URI-like parameters should not be strings", Justification = "Tolerated since we are comparing the string with the route of the page that is not used as a Uri", Scope = "type", Target = "BlazorNavigationManagerExtensions.Fixtures.TestNavigationManager")] +[assembly: SuppressMessage("Special Rules", "SA0001:XmlCommentAnalysisDisabled", Justification = "No need for XML documentation for the unit test project", Scope = "module")]