BitzArt.Blazor.Cookies
1.1.2
Prefix Reserved
dotnet add package BitzArt.Blazor.Cookies --version 1.1.2
NuGet\Install-Package BitzArt.Blazor.Cookies -Version 1.1.2
<PackageReference Include="BitzArt.Blazor.Cookies" Version="1.1.2" />
paket add BitzArt.Blazor.Cookies --version 1.1.2
#r "nuget: BitzArt.Blazor.Cookies, 1.1.2"
// Install BitzArt.Blazor.Cookies as a Cake Addin #addin nuget:?package=BitzArt.Blazor.Cookies&version=1.1.2 // Install BitzArt.Blazor.Cookies as a Cake Tool #tool nuget:?package=BitzArt.Blazor.Cookies&version=1.1.2
Overview
BitzArt.Blazor.Cookies is a nuget package that simplifies working with browser cookies in Blazor applications.
🍪 We also have an authentication package for Blazor that simplifies implementing custom JWT-based authentication & authorization in your Blazor applications while using this package under the hood.
You can use cookies in your Blazor applications as a way to store user's unique information, such as preferences, settings, or session / authentication data.
- Built for dotnet 8+
- Supports all Blazor United render modes
- Supports Blazor prerendering
Blazor Rendermode | Support |
---|---|
Static SSR | ✔️ |
Interactive Server | ✔️ |
Interactive WebAssembly | ✔️ |
Interactive Auto | ✔️ |
Installation
- Install the following package in your Blazor Server project:
dotnet add package BitzArt.Blazor.Cookies.Server
- Add this line to your Server project
program.cs
:
builder.AddBlazorCookies();
- Install the following package in your Blazor Client project:
dotnet add package BitzArt.Blazor.Cookies.Client
- Add this line to your Client project
program.cs
:
builder.AddBlazorCookies();
Usage
- Inject
ICookieService
in any of your Services / Blazor Components - Use
ICookieService
to interact with user's cookies.
License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- Microsoft.AspNetCore.Components.Web (>= 8.0.2)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on BitzArt.Blazor.Cookies:
Package | Downloads |
---|---|
BitzArt.Blazor.Cookies.Server
BitzArt.Blazor.Cookies - Server package |
|
BitzArt.Blazor.Cookies.Client
BitzArt.Blazor.Cookies - Client package |
|
BitzArt.Blazor.Auth
A tearless authentication library for Blazor United |
GitHub repositories
This package is not used by any popular GitHub repositories.