Blazor.Utility
0.0.1
dotnet add package Blazor.Utility --version 0.0.1
NuGet\Install-Package Blazor.Utility -Version 0.0.1
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.Utility" Version="0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Blazor.Utility" Version="0.0.1" />
<PackageReference Include="Blazor.Utility" />
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 Blazor.Utility --version 0.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Blazor.Utility, 0.0.1"
#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 Blazor.Utility@0.0.1
#: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=Blazor.Utility&version=0.0.1
#tool nuget:?package=Blazor.Utility&version=0.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Blazor. Utility
A set of reusable utility packages which can be used in Blaozor Wasm applications.
- Storage Utility Service
- ..
Stoage.Utility
How to use?
Step 1
Install the packge Blazor.Utility
Step 2
Add the below code in your blazor components on program.cs
// In Program.cs
using Blazor.Utility.Storage;
...
...
builder.Services.AddScoped<StorageService>();
Step 3
Inject in the _Imports.razor or necessary Blazor Component
@inject StorageService LocalStorage
Step 4
The invocation
// To Get the value in localStorage
AccessInfo accessInfo = await LocalStorage.GetItemAsync<AccessInfo>("accessInfo");
// To Set the value from localStorage
await LocalStorage.SetItemAsync<UserInfo>("profile", profile);
// To Get the value in sessionStorage
AccessInfo accessInfo = await LocalStorage.GetItemAsync<AccessInfo>("accessInfo", StorageType.Session);
// To Set the value from sessionStorage
await LocalStorage.SetItemAsync<UserInfo>("profile", profile, StorageType.Session);
| Product | Versions 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.
-
net10.0
- Microsoft.AspNetCore.Components.Web (>= 10.0.2)
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 |
|---|---|---|
| 0.0.1 | 99 | 1/25/2026 |
Vesion 0.0.1
- Storage Utility Service