Cloudcrate.AspNetCore.Blazor.Browser.Storage 3.0.0-preview5-19227-01-01

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

// Install Cloudcrate.AspNetCore.Blazor.Browser.Storage as a Cake Tool
#tool nuget:?package=Cloudcrate.AspNetCore.Blazor.Browser.Storage&version=3.0.0-preview5-19227-01-01&prerelease

Blazor Local and Session Storage Support

Installation

PM> Install-Package Cloudcrate.AspNetCore.Blazor.Browser.Storage

See it in Action

Check out Steve Sanderson's demo at NDC Minnesota, at minute 48

Usage

Add Services to Dependency Injection

var serviceProvider = new BrowserServiceProvider(services =>
{
    services.AddStorage();
});

Inject and use Storage

@using Cloudcrate.AspNetCore.Blazor.Browser.Storage;
@inject LocalStorage Storage

<input type="text" bind="@value" />
<button onclick="@SetValue">Set</button>
<button onclick="@GetValue">Get</button>


@functions
{
    string value;

    void SetValue()
    {
        Storage["Value"] = value;
    }

    void GetValue()
    {
        value = Storage["Value"];
    }
}

Using storage native event: StorageEvent

protected override void OnInit()
{
    Storage.StorageChanged += HandleStorageChanged;
}

void HandleStorageChanged(object sender, StorageEventArgs e)  
{  
    Console.WriteLine($"Value for key {e.Key} changed from {e.OldValue} to {e.NewValue}");
} 

public void Dispose()
{
    Storage.StorageChanged -= HandleStorageChanged;
}

Contributors

  • StorageEvent implementation by @peterblazejewicz
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Cloudcrate.AspNetCore.Blazor.Browser.Storage:

Package Downloads
WLWebApp.RazorClassLibrary2

Razor Components shared between WL Desktop and Online

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.0 35,821 9/27/2019
3.0.0-preview9.19424.4.2 567 9/5/2019
3.0.0-preview8.19405.7.1 398 8/20/2019
3.0.0-preview7.19365.7 506 7/24/2019
3.0.0-preview6.19307.4 506 6/15/2019
3.0.0-preview5-19227-02 647 5/7/2019
3.0.0-preview5-19227-01-02 437 5/7/2019
3.0.0-preview5-19227-01-01 469 5/7/2019
0.9.0-preview3-01 794 3/29/2019
0.9.0-preview3 502 3/26/2019
0.5.1 3,992 7/30/2018
0.5.0-preview3 714 7/23/2018
0.5.0-preview2 813 7/9/2018
0.5.0-preview1 831 7/8/2018
0.2.2 1,565 5/4/2018
0.2.1 1,002 5/3/2018
0.2.1-preview4 850 5/3/2018
0.2.1-preview3 793 5/3/2018
0.2.1-preview2 857 4/30/2018
0.2.1-preview1 871 4/30/2018