Json的序列化和反序列化是咱們平常常見的操做,經過System.Net.Http.Json咱們能夠用少許的代碼實現上述操做.正如在github設計文檔中所描述git
Serializing and deserializing JSON payloads from the network is a very common operation for clients, especially in the upcoming Blazor environment. Right now, sending a JSON payload to the server requires multiple lines of code, which will be a major speed bump for those customers. We'd like to add extension methods on top of HttpClient that allows doing those operations with a single method call.
他的依賴項也很是的少目前只依賴System.Net.Http, System.Text.Json
System.Text.Json相對於Newtonsoftjson平均快了兩倍,若是有興趣相關基準測試可在這個文章中查閱
https://devblogs.microsoft.com/dotnet/try-the-new-system-text-json-apis/github
目前它仍是預覽版本json
dotnet add package System.Net.Http.Json
public static async Task<Customer> GetCustomerAsync() { HttpClient clinet=new HttpClient(); var request = new HttpRequestMessage(HttpMethod.Get, "http://localhost:5000/customers"); var response = await clinet.SendAsync(request); return await response.Content.ReadFromJsonAsync<Customer>(); }
經過ReadFromJsonAsync直接能夠反序列化api
public static async Task<Customer> CreateCustomerAsync() { HttpClient clinet = new HttpClient(); var customer=new Customer() { Id = "1", Name = "Fh" }; var request = new HttpRequestMessage(HttpMethod.Post, "http://localhost:5000/create"); request.Content = JsonContent.Create(customer); var response = await clinet.SendAsync(request); var content=response.Content.ReadAsStringAsync(); return customer; }
還能夠如下面這種簡潔方式使用async
_client.GetFromJsonAsync<IReadOnlyList<Customer>>("/customers"); _client.GetFromJsonAsync<Customer?>($"/customers/{id}"); _client.PutAsJsonAsync($"/customers/{customerId}", customer);
if (response.IsSuccessStatusCode) { try { return await response.Content.ReadFromJsonAsync<User>(); } catch (NotSupportedException) // When content type is not valid { Console.WriteLine("The content type is not supported."); } catch (JsonException) // Invalid JSON { Console.WriteLine("Invalid JSON."); } }
還能夠經過NotSupportedException和JsonException異常類處理相應的異常.測試
https://github.com/hueifeng/BlogSample/tree/master/src/SYSTEMNETHTTPJSONui
https://www.stevejgordon.co.uk/sending-and-receiving-json-using-httpclient-with-system-net-http-json設計