Blazor.SessionStorage 7.0.0

.NET 7.0
There is a newer version of this package available.
See the version list below for details.
dotnet add package Blazor.SessionStorage --version 7.0.0
NuGet\Install-Package Blazor.SessionStorage -Version 7.0.0
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="Blazor.SessionStorage" Version="7.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Blazor.SessionStorage --version 7.0.0
#r "nuget: Blazor.SessionStorage, 7.0.0"
#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.
// Install Blazor.SessionStorage as a Cake Addin
#addin nuget:?package=Blazor.SessionStorage&version=7.0.0

// Install Blazor.SessionStorage as a Cake Tool
#tool nuget:?package=Blazor.SessionStorage&version=7.0.0

Blazorators: The Source Generated sessionStorage JavaScript Interop library for Blazor

The Blazor.SessionStorage package consumes the Blazor.SourceGenerators package. It exposes a source generated IStorageService interface specific to Blazor WebAssembly and the sessionStorage Web API.

Get started

After the NuGet package is added as a reference, call the AddSessionStorageServices method to register the ISessionStorageService service type.

var builder = WebApplication.CreateBuilder(args);

// Add services to the container.
builder.Services.AddSessionStorageServices();
builder.Services.AddRazorPages();
builder.Services.AddServerSideBlazor();

var app = builder.Build();

app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();

app.MapControllers();
app.MapBlazorHub();
app.MapFallbackToPage("/_Host");

app.Run();

Anywhere needed within your Razor component, or Blazor client code — either @inject or [Inject] the ISessionStorageService type. The interface takes the following shape:

using Blazor.Serialization.Extensions;
using System.Text.Json;

#nullable enable
namespace Microsoft.JSInterop;

/// <summary>
/// Source generated interface definition of the <c>Storage</c> type.
/// </summary>
public interface ISessionStorageService
{
    /// <summary>
    /// Source generated implementation of <c>window.sessionStorage.clear</c>.
    /// <a href="https://developer.mozilla.org/docs/Web/API/Storage/clear"></a>
    /// </summary>
    ValueTask ClearAsync();

    /// <summary>
    /// Source generated implementation of <c>window.sessionStorage.getItem</c>.
    /// <a href="https://developer.mozilla.org/docs/Web/API/Storage/getItem"></a>
    /// </summary>
    ValueTask<string?> GetItemAsync(string key);

    /// <summary>
    /// Source generated implementation of <c>window.sessionStorage.key</c>.
    /// <a href="https://developer.mozilla.org/docs/Web/API/Storage/key"></a>
    /// </summary>
    ValueTask<string?> KeyAsync(double index);

    /// <summary>
    /// Source generated implementation of <c>window.sessionStorage.removeItem</c>.
    /// <a href="https://developer.mozilla.org/docs/Web/API/Storage/removeItem"></a>
    /// </summary>
    ValueTask RemoveItemAsync(string key);

    /// <summary>
    /// Source generated implementation of <c>window.sessionStorage.setItem</c>.
    /// <a href="https://developer.mozilla.org/docs/Web/API/Storage/setItem"></a>
    /// </summary>
    ValueTask SetItemAsync(string key, string value);

    /// <summary>
    /// Source generated implementation of <c>window.sessionStorage.length</c>.
    /// <a href="https://developer.mozilla.org/docs/Web/API/Storage/length"></a>
    /// </summary>
    ValueTask<double> Length { get; }
}
Product Versions
.NET net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
Compatible target framework(s)
Additional computed target framework(s)
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
7.0.3 148 2/15/2023
7.0.2 113 2/7/2023
7.0.1 156 1/24/2023
7.0.0 159 1/11/2023
2.0.11 389 10/10/2022
2.0.10 423 5/19/2022
2.0.9 521 4/18/2022
2.0.8 296 4/14/2022
2.0.7 293 4/14/2022
2.0.6 292 4/7/2022
2.0.5 293 4/5/2022
2.0.4 278 4/5/2022
2.0.3 278 4/5/2022
2.0.2 293 4/4/2022