Blazor.LocalStorage.WebAssembly
7.0.2
See the version list below for details.
dotnet add package Blazor.LocalStorage.WebAssembly --version 7.0.2
NuGet\Install-Package Blazor.LocalStorage.WebAssembly -Version 7.0.2
<PackageReference Include="Blazor.LocalStorage.WebAssembly" Version="7.0.2" />
paket add Blazor.LocalStorage.WebAssembly --version 7.0.2
#r "nuget: Blazor.LocalStorage.WebAssembly, 7.0.2"
// Install Blazor.LocalStorage.WebAssembly as a Cake Addin
#addin nuget:?package=Blazor.LocalStorage.WebAssembly&version=7.0.2
// Install Blazor.LocalStorage.WebAssembly as a Cake Tool
#tool nuget:?package=Blazor.LocalStorage.WebAssembly&version=7.0.2
Blazorators: The Source Generated localStorage
JavaScript Interop library for Blazor WebAssembly
The Blazor.LocalStorage.WebAssembly
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 ILocalStorageService
service type.
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<App>("#app");
builder.RootComponents.Add<HeadOutlet>("head::after");
builder.Services.AddScoped(
sp => new HttpClient
{
BaseAddress = new Uri(builder.HostEnvironment.BaseAddress)
});
builder.Services.AddLocalStorageServices();
await builder.Build().RunAsync();
Anywhere needed within your Razor component, or Blazor client code — either @inject
or [Inject]
the ILocalStorageService
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 ILocalStorageService
{
/// <summary>
/// Source generated implementation of <c>window.localStorage.clear</c>.
/// <a href="https://developer.mozilla.org/docs/Web/API/Storage/clear"></a>
/// </summary>
void Clear();
/// <summary>
/// Source generated implementation of <c>window.localStorage.getItem</c>.
/// <a href="https://developer.mozilla.org/docs/Web/API/Storage/getItem"></a>
/// </summary>
TResult? GetItem<TResult>(string key, JsonSerializerOptions? options = null);
/// <summary>
/// Source generated implementation of <c>window.localStorage.key</c>.
/// <a href="https://developer.mozilla.org/docs/Web/API/Storage/key"></a>
/// </summary>
string? Key(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>
void RemoveItem(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>
void SetItem<TArg>(string key, TArg value, JsonSerializerOptions? options = null);
/// <summary>
/// Source generated implementation of <c>window.localStorage.length</c>.
/// <a href="https://developer.mozilla.org/docs/Web/API/Storage/length"></a>
/// </summary>
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 |
-
net7.0
- Blazor.Serialization (>= 7.0.2)
- Microsoft.Extensions.DependencyInjection (>= 7.0.0)
- Microsoft.Extensions.Primitives (>= 7.0.0)
- Microsoft.JSInterop (>= 7.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Blazor.LocalStorage.WebAssembly:
Repository | Stars |
---|---|
IEvangelist/learning-blazor
The application for the "Learning Blazor: Build Single Page Apps with WebAssembly and C#" O'Reilly Media book by David Pine.
|
Version | Downloads | Last updated |
---|---|---|
7.0.3 | 404 | 2/15/2023 |
7.0.2 | 111 | 2/7/2023 |
7.0.1 | 187 | 1/24/2023 |
7.0.0 | 2,557 | 1/11/2023 |
2.0.11 | 1,401 | 10/10/2022 |
2.0.10 | 4,547 | 5/19/2022 |
2.0.9 | 431 | 4/18/2022 |
2.0.8 | 289 | 4/14/2022 |
2.0.7 | 285 | 4/14/2022 |
2.0.6 | 316 | 4/7/2022 |
2.0.5 | 698 | 4/5/2022 |
2.0.3 | 288 | 4/5/2022 |
2.0.2 | 291 | 4/4/2022 |
2.0.1 | 289 | 4/4/2022 |
1.5.0 | 292 | 3/29/2022 |
1.4.5 | 311 | 3/26/2022 |
1.4.3 | 275 | 3/25/2022 |
1.4.2 | 309 | 3/23/2022 |
1.4.0 | 283 | 3/22/2022 |
1.3.3 | 294 | 3/18/2022 |
1.3.1 | 279 | 3/16/2022 |
1.3.0 | 284 | 3/16/2022 |
1.2.0 | 352 | 3/13/2022 |
1.1.1 | 380 | 3/8/2022 |
1.1.0 | 302 | 3/5/2022 |
1.0.5 | 290 | 3/4/2022 |
1.0.4 | 299 | 3/3/2022 |
1.0.3 | 322 | 2/24/2022 |
1.0.2 | 324 | 2/22/2022 |
1.0.1 | 295 | 2/22/2022 |
1.0.0 | 292 | 2/22/2022 |