NetcodeHub.Packages.WebAssembly.Storage.Cookie
8.0.0
There is a newer version of this package available.
See the version list below for details.
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Microsoft.AspNetCore.Components.Web (>= 8.0.11)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
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!