aspnetcore
aspnetcore copied to clipboard
ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.
Repro steps: - Create a new Blazor Web App with global interactive WebAssembly rendering enabled and individual user accounts for authentication - Run the app, register a new user, and...
These metrics need to be documented at https://learn.microsoft.com/en-us/aspnet/core/log-mon/metrics/built-in _Originally posted by @JamesNK in https://github.com/dotnet/aspnetcore/issues/61516#issuecomment-2818507808_
## Overview and Motivation Currently, Blazor's persistent component state feature requires imperative API calls to store and retrieve state during prerendering. This proposal introduces a declarative model using attributes to...
Currently when we apply `SupplyParameterFromPersistentComponentState` or use the `PersistentComponentState` APIs the data gets unconditionally serialized. As we support different scenarios for persisting state, we want to have the ability to...
* Our current APIs need to be triggered from the browser. * There are some "scheduling" issues if we try to invoke the browser APIs from the server. Ideally, we...