From 5ee3835e5b0820025a37acf7e98e308beaff09f5 Mon Sep 17 00:00:00 2001 From: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com> Date: Tue, 13 Sep 2022 14:44:26 -1000 Subject: [PATCH 1/5] param binding /1 --- aspnetcore/release-notes/aspnetcore-7.0.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aspnetcore/release-notes/aspnetcore-7.0.md b/aspnetcore/release-notes/aspnetcore-7.0.md index 3dbf72cba3d6..74bfa389a596 100644 --- a/aspnetcore/release-notes/aspnetcore-7.0.md +++ b/aspnetcore/release-notes/aspnetcore-7.0.md @@ -152,7 +152,9 @@ In the following sample, the `/skipme` endpoint is excluded from generating an O [!code-csharp[](~/fundamentals/minimal-apis/7.0-samples/WebMinAPIs/Program.cs?name=snippet_swag2&highlight=20-21)] -## gRPC +## Minimal APIs and API controllers + + enables simple parameter binding to parameter types. For more information, see [Parameter binding for argument lists with `[AsParameters]`](xref:fundamentals/minimal-apis?view=aspnetcore-7.0&preserve-view=true#asparam7) | ### JSON transcoding From 6a5d1343059dcea7c5b81636ba9a27664719e371 Mon Sep 17 00:00:00 2001 From: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com> Date: Tue, 13 Sep 2022 14:48:39 -1000 Subject: [PATCH 2/5] param binding /1 --- aspnetcore/release-notes/aspnetcore-7.0.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aspnetcore/release-notes/aspnetcore-7.0.md b/aspnetcore/release-notes/aspnetcore-7.0.md index 74bfa389a596..a1cfd9e9a510 100644 --- a/aspnetcore/release-notes/aspnetcore-7.0.md +++ b/aspnetcore/release-notes/aspnetcore-7.0.md @@ -154,7 +154,9 @@ In the following sample, the `/skipme` endpoint is excluded from generating an O ## Minimal APIs and API controllers - enables simple parameter binding to parameter types. For more information, see [Parameter binding for argument lists with `[AsParameters]`](xref:fundamentals/minimal-apis?view=aspnetcore-7.0&preserve-view=true#asparam7) | + enables simple parameter binding to parameter types. For more information, see [Parameter binding for argument lists with `[AsParameters]`](xref:fundamentals/minimal-apis?view=aspnetcore-7.0&preserve-view=true#asparam7). + +## gRPC ### JSON transcoding From 4dbb7ce2225bc9b93b0ec0e1580cc0e8f5371216 Mon Sep 17 00:00:00 2001 From: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com> Date: Tue, 13 Sep 2022 14:58:09 -1000 Subject: [PATCH 3/5] param binding /1 --- aspnetcore/release-notes/aspnetcore-7.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/release-notes/aspnetcore-7.0.md b/aspnetcore/release-notes/aspnetcore-7.0.md index a1cfd9e9a510..2da1b3537715 100644 --- a/aspnetcore/release-notes/aspnetcore-7.0.md +++ b/aspnetcore/release-notes/aspnetcore-7.0.md @@ -154,7 +154,7 @@ In the following sample, the `/skipme` endpoint is excluded from generating an O ## Minimal APIs and API controllers - enables simple parameter binding to parameter types. For more information, see [Parameter binding for argument lists with `[AsParameters]`](xref:fundamentals/minimal-apis?view=aspnetcore-7.0&preserve-view=true#asparam7). +The [`[AsParameters]`Attribute](xref:Microsoft.AspNetCore.Http.AsParametersAttribute) enables parameter binding. For more information, see [Parameter binding for argument lists with `[AsParameters]`](xref:fundamentals/minimal-apis?view=aspnetcore-7.0&preserve-view=true#asparam7). ## gRPC From a0c3fe65bc37d220e6494ab17cb1ee22ba20e88c Mon Sep 17 00:00:00 2001 From: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com> Date: Tue, 13 Sep 2022 15:30:35 -1000 Subject: [PATCH 4/5] param binding /1 --- aspnetcore/release-notes/aspnetcore-7.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/release-notes/aspnetcore-7.0.md b/aspnetcore/release-notes/aspnetcore-7.0.md index 2da1b3537715..39ed89ebc51d 100644 --- a/aspnetcore/release-notes/aspnetcore-7.0.md +++ b/aspnetcore/release-notes/aspnetcore-7.0.md @@ -154,7 +154,7 @@ In the following sample, the `/skipme` endpoint is excluded from generating an O ## Minimal APIs and API controllers -The [`[AsParameters]`Attribute](xref:Microsoft.AspNetCore.Http.AsParametersAttribute) enables parameter binding. For more information, see [Parameter binding for argument lists with `[AsParameters]`](xref:fundamentals/minimal-apis?view=aspnetcore-7.0&preserve-view=true#asparam7). +The [`[AsParameters]` Attribute](xref:Microsoft.AspNetCore.Http.AsParametersAttribute) enables parameter binding. For more information, see [Parameter binding for argument lists with `[AsParameters]`](xref:fundamentals/minimal-apis?view=aspnetcore-7.0&preserve-view=true#asparam7). ## gRPC From d154c5d5a842167b79d85df10dab036be5ef93ef Mon Sep 17 00:00:00 2001 From: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com> Date: Tue, 13 Sep 2022 15:33:36 -1000 Subject: [PATCH 5/5] param binding /1 --- aspnetcore/release-notes/aspnetcore-7.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/release-notes/aspnetcore-7.0.md b/aspnetcore/release-notes/aspnetcore-7.0.md index 39ed89ebc51d..1ba7fe40ae22 100644 --- a/aspnetcore/release-notes/aspnetcore-7.0.md +++ b/aspnetcore/release-notes/aspnetcore-7.0.md @@ -154,7 +154,7 @@ In the following sample, the `/skipme` endpoint is excluded from generating an O ## Minimal APIs and API controllers -The [`[AsParameters]` Attribute](xref:Microsoft.AspNetCore.Http.AsParametersAttribute) enables parameter binding. For more information, see [Parameter binding for argument lists with `[AsParameters]`](xref:fundamentals/minimal-apis?view=aspnetcore-7.0&preserve-view=true#asparam7). +The [`[AsParameters]` Attribute](xref:Microsoft.AspNetCore.Http.AsParametersAttribute) enables parameter binding for argument lists . For more information, see [Parameter binding for argument lists with `[AsParameters]`](xref:fundamentals/minimal-apis?view=aspnetcore-7.0&preserve-view=true#asparam7). ## gRPC