AugusteVN.Razor.State 1.2.0

dotnet add package AugusteVN.Razor.State --version 1.2.0
                    
NuGet\Install-Package AugusteVN.Razor.State -Version 1.2.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="AugusteVN.Razor.State" Version="1.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AugusteVN.Razor.State" Version="1.2.0" />
                    
Directory.Packages.props
<PackageReference Include="AugusteVN.Razor.State" />
                    
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 AugusteVN.Razor.State --version 1.2.0
                    
#r "nuget: AugusteVN.Razor.State, 1.2.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.
#:package AugusteVN.Razor.State@1.2.0
                    
#: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=AugusteVN.Razor.State&version=1.2.0
                    
Install as a Cake Addin
#tool nuget:?package=AugusteVN.Razor.State&version=1.2.0
                    
Install as a Cake Tool

State Management in Blazor

Combines packages:

Usage

Inheritance only.

Pass 'PersistentComponentState' to the base class to utilize persisting state for pre-rendered Blazor apps.

public class BlogHttpClient : StateProvider
{
    private BlogPostResponse? _selectedBlogPost;
    public BlogPostResponse? SelectedBlogPost {
        get => _selectedBlogPost;
        set => SetField(ref _selectedBlogPost, value);
    }
    
    private readonly HttpClient _http;
    public BlogHttpClient(HttpClient http, PersistentComponentState appState) : base(appState)
    {
        _http = http;
    }
    
    public async Task InitSelectedBlogPost(GetBlogPostForSlugRequest request)
    {
        SelectedBlogPost = await FetchAsync<BlogPostResponse?>(
            key: $"{nameof(GetBlogPostForSlug)}/{request.Slug}",
            fetchMethod: () => GetBlogPostForSlug(request),
            reFetchFromMethod: false);
    }

    private async Task<BlogPostResponse?> GetBlogPostForSlug(GetBlogPostForSlugRequest request)
    {
        try
        {
            return await _http.GetFromJsonAsync<BlogPostResponse>($"{ApiRoutes.BlogPosts}/{request.Slug}");
        }
        catch (Exception e)
        {
            _logger.LogWarning("Could not get blog post with slug: {slug}, {@errorMessage}", request.Slug, e.Message);
            return null;
        }
    }   
}

Brought to you by: kiss-code.com.

Product Compatible and additional computed target framework versions.
.NET 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 (7)

Showing the top 5 NuGet packages that depend on AugusteVN.Razor.State:

Package Downloads
AugusteVN.Modules.Auth._Shared.Spa

Blazor components for login, registration, profile, and admin panels

AugusteVN.Modules.Commerce._Shared.Spa

Blazor components for product listing, cart, and order history

AugusteVN.Modules.VirtualAssistant._Shared.Spa

Blazor chat interface for Ollama LLM integration

AugusteVN.Modules.EmailCampaigns._Shared.Spa

Blazor components for managing campaigns, templates, and subscribers

AugusteVN.Modules.Reviews._Shared.Spa

Blazor components for review display and management

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.0 516 7/9/2026
1.1.3 152 1/28/2026
1.1.2 133 1/28/2026
1.1.1 330 12/17/2025
1.1.0 234 6/7/2025
1.0.9 398 6/5/2025

Upgraded to .NET 10.