System.Net.Http.Json 9.0.0-rc.2.24473.5

About

Provides extension methods for System.Net.Http.HttpClient and System.Net.Http.HttpContent that facilitate serialization and deserialization of HTTP requests using System.Text.Json.

Key Features

  • Extension methods for deserializing HTTP response JSON bodies.
  • Extension methods for serializing HTTP request JSON bodies.
  • Extension methods for deserializing JSON from HttpContent instances.

How to Use

using System.Net.Http.Json;

using var client = new HttpClient();

// Get the list of all books
Book[] books = await client.GetFromJsonAsync<Book[]>("https://api.contoso.com/books");

// Send a POST request to add a new book
var book = new Book(id: 42, "Title", "Author", publishedYear: 2023);
HttpResponseMessage response = await client.PostAsJsonAsync($"https://api.contoso.com/books/{book.id}", book);

if (response.IsSuccessStatusCode)
    Console.WriteLine("Book added successfully.");
else
    Console.WriteLine($"HTTP request failed with status code: {response.StatusCode}");

public record Book(int id, string title, string author, int publishedYear);

Main Types

The main types provided by this library are:

  • HttpClientJsonExtensions
  • HttpContentJsonExtensions

Additional Documentation

Feedback & Contributing

System.Net.Http.Json is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Showing the top 20 packages that depend on System.Net.Http.Json.

Packages Downloads
OpenIddict.Client.SystemNetHttp
System.Net.Http integration package for the OpenIddict client services.
54
OpenIddict.Validation.SystemNetHttp
System.Net.Http integration package for the OpenIddict validation services.
45
OpenIddict.Client.SystemNetHttp
System.Net.Http integration package for the OpenIddict client services.
11
OpenIddict.Validation.SystemNetHttp
System.Net.Http integration package for the OpenIddict validation services.
8
OpenIddict
Versatile OpenID Connect stack for .NET. Note: this metapackage only references the generic core, server and validation packages. To use these features on ASP.NET Core or OWIN/Katana/ASP.NET 4.x, reference the OpenIddict.AspNetCore or OpenIddict.Owin package.
8
OpenIddict.Client.SystemNetHttp
System.Net.Http integration package for the OpenIddict client services.
8
OpenIddict.Client.SystemNetHttp
System.Net.Http integration package for the OpenIddict client services.
7
OpenIddict.Validation.SystemNetHttp
System.Net.Http integration package for the OpenIddict validation services.
6
OpenIddict.Client.SystemNetHttp
System.Net.Http integration package for the OpenIddict client services.
6
OpenIddict.Validation.SystemNetHttp
System.Net.Http integration package for the OpenIddict validation services.
5

https://go.microsoft.com/fwlink/?LinkID=799421

.NET Framework 4.6.2

.NET 8.0

.NET 9.0

  • No dependencies.

.NET Standard 2.0

Version Downloads Last updated
9.0.0 0 11/12/2024
9.0.0-rc.2.24473.5 6 10/31/2024
9.0.0-rc.1.24431.7 0 09/10/2024
9.0.0-preview.7.24405.7 3 10/30/2024
9.0.0-preview.6.24327.7 0 07/09/2024
9.0.0-preview.5.24306.7 2 06/26/2024
9.0.0-preview.4.24266.19 4 05/31/2024
9.0.0-preview.3.24172.9 3 05/31/2024
9.0.0-preview.2.24128.5 0 03/12/2024
9.0.0-preview.1.24080.9 4 03/08/2024
8.0.1 2 10/31/2024
8.0.0 1 03/07/2024
8.0.0-rc.2.23479.6 3 03/07/2024
8.0.0-rc.1.23419.4 2 03/07/2024
8.0.0-preview.7.23375.6 2 03/08/2024
8.0.0-preview.6.23329.7 0 07/11/2023
8.0.0-preview.5.23280.8 0 06/13/2023
8.0.0-preview.4.23259.5 2 03/08/2024
8.0.0-preview.3.23174.8 2 03/08/2024
8.0.0-preview.2.23128.3 5 03/08/2024
8.0.0-preview.1.23110.8 6 06/26/2024
7.0.1 1 09/19/2024
7.0.0 1 05/24/2024
7.0.0-rc.2.22472.3 3 03/08/2024
7.0.0-rc.1.22426.10 3 03/08/2024
7.0.0-preview.7.22375.6 3 10/03/2024
7.0.0-preview.6.22324.4 3 03/08/2024
7.0.0-preview.5.22301.12 3 10/05/2024
7.0.0-preview.4.22229.4 1 06/26/2024
7.0.0-preview.3.22175.4 1 03/08/2024
7.0.0-preview.2.22152.2 6 03/08/2024
7.0.0-preview.1.22076.8 3 03/08/2024
6.0.2 0 11/12/2024
6.0.2-mauipre.1.22054.8 3 03/08/2024
6.0.1 2 03/08/2024
6.0.0 3 03/08/2024
6.0.0-rc.2.21480.5 2 03/08/2024
6.0.0-rc.1.21451.13 1 03/08/2024
6.0.0-preview.7.21377.19 3 03/08/2024
6.0.0-preview.6.21352.12 1 03/08/2024
6.0.0-preview.5.21301.5 1 09/14/2024
6.0.0-preview.4.21253.7 1 03/11/2024
6.0.0-preview.3.21201.4 2 09/07/2024
6.0.0-preview.2.21154.6 3 03/08/2024
6.0.0-preview.1.21102.12 2 03/08/2024
5.0.0 1 10/31/2024
5.0.0-rc.2.20475.5 2 03/08/2024
5.0.0-rc.1.20451.14 3 03/08/2024
5.0.0-preview.8.20407.11 2 03/08/2024
5.0.0-preview.7.20364.11 2 10/30/2024
5.0.0-preview.6.20305.6 1 03/08/2024
5.0.0-preview.5.20278.1 3 05/29/2024
5.0.0-preview.4.20251.6 4 09/14/2024
5.0.0-preview.3.20214.6 3 03/08/2024
3.2.1 9 03/04/2024
3.2.0 0 05/18/2020
3.2.0-rc1.20217.1 3 03/08/2024
3.2.0-preview5.20210.3 2 03/08/2024
3.2.0-preview3.20175.8 1 03/08/2024