Soenneker.Blazor.Utils.Navigation 4.0.1057

Prefix Reserved
dotnet add package Soenneker.Blazor.Utils.Navigation --version 4.0.1057
                    
NuGet\Install-Package Soenneker.Blazor.Utils.Navigation -Version 4.0.1057
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Soenneker.Blazor.Utils.Navigation" Version="4.0.1057" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Blazor.Utils.Navigation" Version="4.0.1057" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Blazor.Utils.Navigation" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Blazor.Utils.Navigation --version 4.0.1057
                    
#r "nuget: Soenneker.Blazor.Utils.Navigation, 4.0.1057"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Soenneker.Blazor.Utils.Navigation@4.0.1057
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Blazor.Utils.Navigation&version=4.0.1057
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Blazor.Utils.Navigation&version=4.0.1057
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Blazor.Utils.Navigation

Can work side-by-side existing Blazor NavigationManager usage, and still work with navigate back

Installation

dotnet add package Soenneker.Blazor.Navigation

Usage

  1. Register INavigationUtil within Program.cs or wherever your registering your services:
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddNavigationUtil();
}
  1. Warm it up so it can begin recording navigation history. Call after the WebAssemblyHost has been built:
public static async Task Main(string[] args)
{
    ...
    WebAssemblyHost host = builder.Build();

    host.Services.WarmupNavigation();
}
  1. Inject INavigationUtil within pages/components where you need to access navigation methods:
@using Soenneker.Blazor.Navigation.Abstract
@inject INavigationUtil NavigationUtil
NavigationUtil.NavigateBack();
// within the SPA client
NavigationUtil.NavigateTo("/users");

// forcing a page load
NavigationUtil.NavigateTo("/users", true);
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Soenneker.Blazor.Utils.Navigation:

Package Downloads
Soenneker.Blazor.Utils.Session

A Blazor utility for automatic navigation after JWT expiration

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.1057 0 2/28/2026
4.0.1055 562 2/22/2026
4.0.1054 204 2/22/2026
4.0.1053 413 2/20/2026
4.0.1052 327 2/12/2026
4.0.1051 115 2/11/2026
4.0.1050 586 2/10/2026
4.0.1049 90 2/10/2026
4.0.1048 94 2/10/2026
4.0.1047 352 2/10/2026
4.0.1046 533 2/4/2026
4.0.1045 382 1/28/2026
4.0.1044 1,113 1/18/2026
4.0.1043 226 1/18/2026
4.0.1042 508 1/13/2026
4.0.1041 102 1/13/2026
4.0.1040 219 1/13/2026
4.0.1039 372 1/12/2026
4.0.1038 289 1/12/2026
4.0.1037 718 1/8/2026
Loading failed