Soenneker.Blazor.Navigation 1.0.46

Prefix Reserved
dotnet add package Soenneker.Blazor.Navigation --version 1.0.46
                    
NuGet\Install-Package Soenneker.Blazor.Navigation -Version 1.0.46
                    
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.Navigation" Version="1.0.46" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Blazor.Navigation" Version="1.0.46" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Blazor.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.Navigation --version 1.0.46
                    
#r "nuget: Soenneker.Blazor.Navigation, 1.0.46"
                    
#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.
#addin nuget:?package=Soenneker.Blazor.Navigation&version=1.0.46
                    
Install Soenneker.Blazor.Navigation as a Cake Addin
#tool nuget:?package=Soenneker.Blazor.Navigation&version=1.0.46
                    
Install Soenneker.Blazor.Navigation 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.Navigation

A Blazor WebAssembly library that features navigate back, login/logout, reload and more

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

Installation

Install-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();

Logging in/out

// Pairs nicely with MSAL defaults
NavigationUtil.Logout();
NavigationUtil.Login();
// within the SPA client
NavigationUtil.NavigateTo("/users");

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

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.46 241 11/16/2023
1.0.45 168 10/24/2023
1.0.44 158 10/24/2023
1.0.43 153 10/24/2023
1.0.42 147 10/10/2023
1.0.41 141 10/10/2023
1.0.40 143 10/10/2023
1.0.39 162 9/12/2023
1.0.38 143 9/12/2023
1.0.37 153 9/12/2023
1.0.36 214 8/8/2023
1.0.35 197 8/8/2023
1.0.34 198 8/8/2023
1.0.33 198 7/11/2023
1.0.32 184 7/11/2023
1.0.31 193 7/11/2023
1.0.30 182 6/23/2023
1.0.29 174 6/23/2023
1.0.28 177 6/23/2023
1.0.27 185 6/13/2023
1.0.26 189 6/13/2023
1.0.25 186 6/13/2023
1.0.23 387 4/11/2023 1.0.23 is deprecated because it is no longer maintained.
1.0.22 271 4/11/2023 1.0.22 is deprecated because it is no longer maintained.
1.0.21 293 4/11/2023 1.0.21 is deprecated because it is no longer maintained.
1.0.20 283 4/11/2023 1.0.20 is deprecated because it is no longer maintained.
1.0.19 300 4/3/2023 1.0.19 is deprecated because it is no longer maintained.
1.0.18 327 3/23/2023 1.0.18 is deprecated because it is no longer maintained.
1.0.17 340 3/18/2023 1.0.17 is deprecated because it is no longer maintained.
1.0.11 333 3/18/2023 1.0.11 is deprecated because it is no longer maintained.
1.0.10 307 3/18/2023 1.0.10 is deprecated because it is no longer maintained.
1.0.7 327 3/18/2023 1.0.7 is deprecated because it is no longer maintained.
1.0.6 314 3/18/2023 1.0.6 is deprecated because it is no longer maintained.
1.0.5 487 1/17/2023 1.0.5 is deprecated because it is no longer maintained.
1.0.4 392 1/14/2023 1.0.4 is deprecated because it is no longer maintained.
1.0.3 397 1/14/2023 1.0.3 is deprecated because it is no longer maintained.
1.0.2 362 1/13/2023 1.0.2 is deprecated because it is no longer maintained.
1.0.1 376 1/13/2023 1.0.1 is deprecated because it is no longer maintained.