Zonit.Extensions 0.1.50

There is a newer version of this package available.
See the version list below for details.
dotnet add package Zonit.Extensions --version 0.1.50
                    
NuGet\Install-Package Zonit.Extensions -Version 0.1.50
                    
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="Zonit.Extensions" Version="0.1.50" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Zonit.Extensions" Version="0.1.50" />
                    
Directory.Packages.props
<PackageReference Include="Zonit.Extensions" />
                    
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 Zonit.Extensions --version 0.1.50
                    
#r "nuget: Zonit.Extensions, 0.1.50"
                    
#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 Zonit.Extensions@0.1.50
                    
#: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=Zonit.Extensions&version=0.1.50
                    
Install as a Cake Addin
#tool nuget:?package=Zonit.Extensions&version=0.1.50
                    
Install as a Cake Tool

Useful tools for Blazor

Extensions:

Nuget Package Abstraction

Install-Package Zonit.Extensions.Website.Abstractions 

Nuget Package Extensions

Install-Package Zonit.Extensions.Website

Installation:

Add this in Routes.razor

@using Zonit.Extensions

<ZonitCookiesExtension />

Services in Program.cs

builder.Services.AddCookiesExtension();

App in Program.cs

app.UseCookiesExtension();

Example:

@page "/"
@rendermode InteractiveServer
@using Zonit.Extensions.Website
@inject ICookieProvider Cookie

@foreach (var cookie in Cookie.GetCookies())
{
    <p>@cookie.Name @cookie.Value</p>
}

API

    public CookieModel? Get(string key);
    public CookieModel Set(string key, string value, int days = 12 * 30);
    public CookieModel Set(CookieModel model);
    public Task<CookieModel> SetAsync(string key, string value, int days = 12 * 30);
    public Task<CookieModel> SetAsync(CookieModel model);
    public List<CookieModel> GetCookies();

We use SetAsync only in the Blazor circuit. It executes the JS code with the Cookies record.

Product 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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  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.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on Zonit.Extensions:

Package Downloads
Zonit.Extensions.Ai.Abstractions

Core abstractions and interfaces for Zonit.Extensions.Ai. Use this package when you only need the interfaces without implementation, perfect for defining prompts in domain layers.

Zonit.Extensions.Website

ASP.NET Core and Blazor web extensions providing base components (PageBase, PageEditBase, PageViewBase), navigation services, breadcrumbs management, toast notifications, cookie handling, and data protection utilities for building modern web applications.

Zonit.Extensions.Databases.SqlServer

SQL Server provider for Zonit.Extensions.Databases - Entity Framework Core repository with fluent query API, ThenInclude, DTO mapping, and full-text search support.

Zonit.Extensions.Website.MudBlazor

MudBlazor integration for Zonit.Extensions Value Objects. Provides automatic converters for Value Objects (Title, Description, UrlSlug, Content, Url) with built-in exception handling and localized error messages for MudBlazor form components.

Zonit.Messaging.Schedules.Abstractions

Abstractions and interfaces for Zonit.Messaging.Schedules - a scheduled job processing library with cron-like and interval-based scheduling.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.2.11 36 4/19/2026
0.2.10 2,124 1/22/2026
0.2.9 430 1/21/2026
0.2.8 645 1/21/2026
0.2.7 2,229 1/16/2026
0.2.6 126 1/15/2026
0.2.4 136 1/15/2026
0.2.3 131 1/15/2026
0.2.2 120 1/15/2026
0.2.1 169 1/11/2026
0.2.0 121 1/11/2026
0.1.54 168 1/6/2026
0.1.53 172 1/4/2026
0.1.52 124 1/4/2026
0.1.51 153 1/2/2026
0.1.50 442 11/18/2025
0.1.27 194 8/16/2025
0.1.26 231 8/14/2025
0.1.25 317 7/26/2025
0.1.24 342 7/26/2025
Loading failed