From 82755813f2c24304c80034dbbcf22f8bc0271029 Mon Sep 17 00:00:00 2001 From: fcdeveloper00 Date: Tue, 2 Sep 2025 11:15:26 -0700 Subject: [PATCH 1/3] Update httpclient.md --- docs/fundamentals/networking/http/httpclient.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/fundamentals/networking/http/httpclient.md b/docs/fundamentals/networking/http/httpclient.md index 50563d60ad4ce..cc353dbdd470d 100644 --- a/docs/fundamentals/networking/http/httpclient.md +++ b/docs/fundamentals/networking/http/httpclient.md @@ -170,7 +170,8 @@ The code completes the following tasks: #### Create the HTTP POST request as JSON -To automatically serialize `POST` request arguments and deserialize responses into strongly typed C# objects, use the extension method that's part of the [System.Net.Http.Json](https://www.nuget.org/packages/System.Net.Http.Json) NuGet package. +To automatically serialize `POST` request arguments and deserialize responses into strongly typed C# objects, use the and the + extension methods respectively, which are part of the [System.Net.Http.Json](https://www.nuget.org/packages/System.Net.Http.Json) NuGet package. :::code source="../snippets/httpclient/Program.PostAsJson.cs" id="postasjson"::: @@ -194,7 +195,8 @@ The code completes the following tasks: #### Create the HTTP PUT request as JSON -To automatically serialize `PUT` request arguments and deserialize responses into strongly typed C# objects, use the extension method that's part of the [System.Net.Http.Json](https://www.nuget.org/packages/System.Net.Http.Json) NuGet package. +To automatically serialize `PUT` request arguments and deserialize responses into strongly typed C# objects, use the and the + extension methods respectively, which are part of the [System.Net.Http.Json](https://www.nuget.org/packages/System.Net.Http.Json) NuGet package. :::code source="../snippets/httpclient/Program.PutAsJson.cs" id="putasjson"::: From df52ad3b4cda4d72a79f5e819127e5e92b48d9e6 Mon Sep 17 00:00:00 2001 From: fcdeveloper00 Date: Mon, 22 Sep 2025 09:03:00 -0700 Subject: [PATCH 2/3] Update httpclient.md some grammatical fixes. --- docs/fundamentals/networking/http/httpclient.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/fundamentals/networking/http/httpclient.md b/docs/fundamentals/networking/http/httpclient.md index cc353dbdd470d..9bd5371c9827c 100644 --- a/docs/fundamentals/networking/http/httpclient.md +++ b/docs/fundamentals/networking/http/httpclient.md @@ -171,7 +171,7 @@ The code completes the following tasks: #### Create the HTTP POST request as JSON To automatically serialize `POST` request arguments and deserialize responses into strongly typed C# objects, use the and the - extension methods respectively, which are part of the [System.Net.Http.Json](https://www.nuget.org/packages/System.Net.Http.Json) NuGet package. + extension methods, respectively, that are part of the [System.Net.Http.Json](https://www.nuget.org/packages/System.Net.Http.Json) NuGet package. :::code source="../snippets/httpclient/Program.PostAsJson.cs" id="postasjson"::: @@ -196,7 +196,7 @@ The code completes the following tasks: #### Create the HTTP PUT request as JSON To automatically serialize `PUT` request arguments and deserialize responses into strongly typed C# objects, use the and the - extension methods respectively, which are part of the [System.Net.Http.Json](https://www.nuget.org/packages/System.Net.Http.Json) NuGet package. + extension methods, respectively, that are part of the [System.Net.Http.Json](https://www.nuget.org/packages/System.Net.Http.Json) NuGet package. :::code source="../snippets/httpclient/Program.PutAsJson.cs" id="putasjson"::: From 3d4cfc4f663ff775c5a3f145addf96b8d9086556 Mon Sep 17 00:00:00 2001 From: "Meaghan Osagie (Lewis)" Date: Mon, 29 Sep 2025 12:01:41 -0700 Subject: [PATCH 3/3] Fix formatting in HTTP client documentation --- docs/fundamentals/networking/http/httpclient.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/fundamentals/networking/http/httpclient.md b/docs/fundamentals/networking/http/httpclient.md index 9bd5371c9827c..67f901eaa5a1d 100644 --- a/docs/fundamentals/networking/http/httpclient.md +++ b/docs/fundamentals/networking/http/httpclient.md @@ -170,8 +170,7 @@ The code completes the following tasks: #### Create the HTTP POST request as JSON -To automatically serialize `POST` request arguments and deserialize responses into strongly typed C# objects, use the and the - extension methods, respectively, that are part of the [System.Net.Http.Json](https://www.nuget.org/packages/System.Net.Http.Json) NuGet package. +To automatically serialize `POST` request arguments and deserialize responses into strongly typed C# objects, use the and the extension methods, respectively, that are part of the [System.Net.Http.Json](https://www.nuget.org/packages/System.Net.Http.Json) NuGet package. :::code source="../snippets/httpclient/Program.PostAsJson.cs" id="postasjson":::