Blazor.LocalStorage.Server
2.0.1
Renaming package - dropped the ".Server" ending segment.
dotnet add package Blazor.LocalStorage.Server --version 2.0.1
NuGet\Install-Package Blazor.LocalStorage.Server -Version 2.0.1
<PackageReference Include="Blazor.LocalStorage.Server" Version="2.0.1" />
paket add Blazor.LocalStorage.Server --version 2.0.1
#r "nuget: Blazor.LocalStorage.Server, 2.0.1"
// Install Blazor.LocalStorage.Server as a Cake Addin #addin nuget:?package=Blazor.LocalStorage.Server&version=2.0.1 // Install Blazor.LocalStorage.Server as a Cake Tool #tool nuget:?package=Blazor.LocalStorage.Server&version=2.0.1
Blazorators: The Source Generated localStorage
JavaScript Interop library for Blazor Server
The Blazor.LocalStorage
package consumes the Blazor.SourceGenerators
package. It exposes a source generated IStorageService
interface specific to Blazor WebAssembly and the localStorage
Web API.
Get started
After the NuGet package is added as a reference, call the AddLocalStorageServices
method to register the IStorageService
service type.
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddLocalStorageServices();
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 IStorageService
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 IStorageService
{
/// <summary>
/// Source generated implementation of <c>window.localStorage.clear</c>.
/// <a href="https://developer.mozilla.org/docs/Web/API/Storage/clear"></a>
/// </summary>
ValueTask ClearAsync();
/// <summary>
/// Source generated implementation of <c>window.localStorage.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.localStorage.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.localStorage.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.localStorage.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.localStorage.length</c>.
/// <a href="https://developer.mozilla.org/docs/Web/API/Storage/length"></a>
/// </summary>
ValueTask<double> Length { get; }
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. 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. |
-
net6.0
- Microsoft.Extensions.DependencyInjection (>= 6.0.0)
- Microsoft.Extensions.Primitives (>= 6.0.0)
- Microsoft.JSInterop (>= 6.0.0)
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 | |
---|---|---|---|
2.0.1 | 621 | 4/4/2022 | |
1.5.0 | 464 | 3/29/2022 | |
1.4.5 | 470 | 3/26/2022 | |
1.4.3 | 465 | 3/25/2022 | |
1.4.2 | 462 | 3/23/2022 | |
1.4.0 | 471 | 3/22/2022 | |
1.3.3 | 458 | 3/18/2022 | |
1.3.1 | 462 | 3/16/2022 | |
1.3.0 | 470 | 3/16/2022 | |
1.2.0 | 495 | 3/13/2022 | |
1.1.1 | 486 | 3/8/2022 | |
1.1.0 | 467 | 3/5/2022 | |
1.0.5 | 477 | 3/4/2022 | |
1.0.4 | 476 | 3/3/2022 | |
1.0.3 | 489 | 2/24/2022 |