AspNetCore.Docs
AspNetCore.Docs copied to clipboard
Documentation for ASP.NET Core
It seems that **Polymorphic model binding** has critical limitations worth, if not addressing, at least mentioning. Probably complex objects, that is, objects containing other, even non-polymorphic objects are not supported...
# 2022 For the 2021 idea list, UE pass list, and notes, see [Blazor project tracking 2021 (dotnet/AspNetCore.Docs #19286)](https://github.com/dotnet/AspNetCore.Docs/issues/19286). ## For the 7.0 tracking issue later * Per https://github.com/dotnet/AspNetCore.Docs/pull/25283, remove...
[JSON options configuration](https://devblogs.microsoft.com/dotnet/asp-net-core-updates-in-net-7-preview-1/#json-options-configuration) `ConfigureRouteHandlerJsonOptions` has been renamed `ConfigureHttpJsonOptions`, see https://github.com/dotnet/aspnetcore/pull/42747 Need to update the following code for next release: ``` using System.Text.Json.Serialization; var builder = WebApplication.CreateBuilder(args); builder.Services.ConfigureRouteHandlerJsonOptions(options => { options.SerializerOptions.ReferenceHandler...
[Request decompression middleware](https://devblogs.microsoft.com/dotnet/asp-net-core-updates-in-dotnet-7-preview-6/#request-decompression-middleware) See https://github.com/dotnet/aspnetcore/pull/40279 Put sample [here](https://github.com/dotnet/AspNetCore.Docs/tree/main/aspnetcore/fundamentals/middleware/samples) then delete the [readme file](https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/fundamentals/middleware/samples/readme.txt)
I think is possible to create a custom scaffolder. It would be nice if there were some documentation as to how to do this. The out of the box scaffolders...
[Minimal API parameter binding for argument lists](https://devblogs.microsoft.com/dotnet/asp-net-core-updates-in-dotnet-7-preview-5/#minimal-api-parameter-binding-for-argument-lists) see https://github.com/dotnet/aspnetcore/pull/41325 Put code in https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/fundamentals/minimal-apis/arg-lists/readme.txt and delete readme.txt Use ``` var connection = new SqliteConnection("DataSource=:memory:"); connection.Open(); ``` `@brunolins16` to review
[Enter feedback here] --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 28d0490e-205f-20a5-ace5-904f4c8ad78f * Version Independent ID: 4a2c8d95-fdd2-fdb1-b61d-802d0a8539c3...
* [RateLimiting middleware](https://devblogs.microsoft.com/dotnet/announcing-rate-limiting-for-dotnet/#ratelimiting-middleware) from the blog [Announcing Rate Limiting for .NET](https://devblogs.microsoft.com/dotnet/announcing-rate-limiting-for-dotnet/) * [Rate limiting middleware](https://devblogs.microsoft.com/dotnet/asp-net-core-updates-in-dotnet-7-preview-4/#rate-limiting-middleware) * [Blog update](https://devblogs.microsoft.com/dotnet/asp-net-core-updates-in-dotnet-7-preview-6/#updates-to-rate-limiting-middleware) * https://github.com/dotnet/aspnetcore/issues/41667 [System.Threading.RateLimiting](https://www.nuget.org/packages/System.Threading.RateLimiting) will be documented in https://github.com/dotnet/docs/issues/30426 and this article will...
Fixes #26186 Addresses #26848 [Internal Review Topic](https://review.docs.microsoft.com/en-us/aspnet/core/blazor/hybrid/class-libraries?view=aspnetcore-6.0&branch=pr-en-us-26331) # NOTE TO SELF React to https://github.com/dotnet/AspNetCore.Docs/issues/26848 with a commit here and confirm/update the regular Blazor *Class libraries* topic. ## Notes * Although...
The PowerShell examples of how to generate certificates are helpful, but it took me a week or two to figure out how to produce the equivalent C# code which generates...