NetcodeHub.Packages.WebAssembly.Storage.Cookie 8.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package NetcodeHub.Packages.WebAssembly.Storage.Cookie --version 8.0.0                
NuGet\Install-Package NetcodeHub.Packages.WebAssembly.Storage.Cookie -Version 8.0.0                
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="NetcodeHub.Packages.WebAssembly.Storage.Cookie" Version="8.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NetcodeHub.Packages.WebAssembly.Storage.Cookie --version 8.0.0                
#r "nuget: NetcodeHub.Packages.WebAssembly.Storage.Cookie, 8.0.0"                
#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.
// Install NetcodeHub.Packages.WebAssembly.Storage.Cookie as a Cake Addin
#addin nuget:?package=NetcodeHub.Packages.WebAssembly.Storage.Cookie&version=8.0.0

// Install NetcodeHub.Packages.WebAssembly.Storage.Cookie as a Cake Tool
#tool nuget:?package=NetcodeHub.Packages.WebAssembly.Storage.Cookie&version=8.0.0                

Install the Package

NetcodeHub.Packages.WebAssembly.Storage.Cookie

Register Package Service

builder.Services.AddNetcodeHubCookieStorageService();

Add The JavaScript File to Index.Html file

 <script src="_content/NetcodeHub.Packages.WebAssembly.Storage.Cookie/cookie.js"></script>

Inject The Interface in The _Import.razor file

@inject IBrowserCookieStorageService browserCookieStorageService

Use It

string path = "/";
string key = "myKey";
string value = "myValue";

// Set
await browserCookieStorageService.SetAsync(key, value, days, path);

//Get
string getData = await browserCookieStorageService.GetAsync(key);

//Remove
 await browserCookieStorageService.RemoveAsync(key);
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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
9.0.0 96 11/26/2024
8.0.0 100 11/26/2024

Initial release of BrowserCookieStorageService.
Added methods for managing cookies: SetCookie, GetCookie, and RemoveCookie.
Full support for .NET 8 Blazor WebAssembly projects.
Leverages IJSRuntime for JavaScript interop.
Lightweight and easy-to-integrate solution for cookie management.
Enjoy a streamlined approach to handling cookies in your Blazor WebAssembly applications!