Biss.Web
10.4.1
dotnet add package Biss.Web --version 10.4.1
NuGet\Install-Package Biss.Web -Version 10.4.1
<PackageReference Include="Biss.Web" Version="10.4.1" />
<PackageVersion Include="Biss.Web" Version="10.4.1" />
<PackageReference Include="Biss.Web" />
paket add Biss.Web --version 10.4.1
#r "nuget: Biss.Web, 10.4.1"
#:package Biss.Web@10.4.1
#addin nuget:?package=Biss.Web&version=10.4.1
#tool nuget:?package=Biss.Web&version=10.4.1
Biss.Web
© 2026 FOTEC Forschungs- und Technologietransfer GmbH | https://www.fotec.at
What can this NuGet package do?
This NuGet package provides all necessary classes and interfaces required for building web applications using Blazor. It includes browser local storage support and ASP.NET Core integration components.
How do I use it?
To use this library, install the NuGet package and configure the LocalStorage service in your application startup:
\\csharp builder.Services.AddTransient<IBissLocalStorage, BissBlazorLocalStorage>(); \\
Then you can inject and use the storage service in your components or services:
\\csharp public class MyService { private readonly IBissLocalStorage _localStorage;
public MyService(IBissLocalStorage localStorage)
{
_localStorage = localStorage;
}
public async Task SaveDataAsync(string key, string value)
{
await _localStorage.SetItemAsync(key, value);
}
public async Task<string> LoadDataAsync(string key)
{
return await _localStorage.GetItemAsync(key);
}
} \\
What are the core features?
- Browser LocalStorage - Save and retrieve data from the browser's local storage
- Blazor Integration - Seamless integration with Blazor components
- Async Support - Full async/await support for storage operations
- Type-Safe API - Strongly typed interface for storage operations
Dependencies
| Package | Version | Purpose |
|---|---|---|
| Biss.Core | Latest | Core utilities and base classes |
| Microsoft.AspNetCore.Components | 10.0.2+ | Blazor component framework |
| Microsoft.AspNetCore.Components.Web | 10.0.2+ | Blazor web components |
| 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. |
-
net10.0
- Biss (>= 10.4.1)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Biss.Web:
| Package | Downloads |
|---|---|
|
Biss.Apps.Template.ConnectivityHostTemplate
Biss Core SDK |
|
|
Biss.Apps.Blazor
Biss Core SDK |
|
|
Biss.Offline.Service
Biss Core SDK |
|
|
Biss.Live.Service
Biss Core SDK |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 10.4.1 | 105 | 2/12/2026 |
Changelog.md