Biss.Web 10.4.1

dotnet add package Biss.Web --version 10.4.1
                    
NuGet\Install-Package Biss.Web -Version 10.4.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="Biss.Web" Version="10.4.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Biss.Web" Version="10.4.1" />
                    
Directory.Packages.props
<PackageReference Include="Biss.Web" />
                    
Project file
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 Biss.Web --version 10.4.1
                    
#r "nuget: Biss.Web, 10.4.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 Biss.Web@10.4.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=Biss.Web&version=10.4.1
                    
Install as a Cake Addin
#tool nuget:?package=Biss.Web&version=10.4.1
                    
Install as a Cake Tool

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 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

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