ChatGPT解决这个技术问题 Extra ChatGPT

Where is HttpContent.ReadAsAsync?

I see in tons of examples on the web using the new HttpClient object (as part of the new Web API) that there should be HttpContent.ReadAsAsync<T> method. However, MSDN doesn't mention this method, nor does IntelliSense find it.

Where did it go, and how do I work around it?


C
Chris Marisic

It looks like it is an extension method (in System.Net.Http.Formatting):

HttpContentExtensions Class

Update:

PM> install-package Microsoft.AspNet.WebApi.Client

According to the System.Net.Http.Formatting NuGet package page, the System.Net.Http.Formatting package is now legacy and can instead be found in the Microsoft.AspNet.WebApi.Client package available on NuGet here.


Has this been deprecated in the latest client Nugets? Can't find it now (used to be able to).
It could well be. .NET4.5 added a lot of new stuff as regards async/tasks (await, etc), so these extensions may no longer be necessary. I'd maybe have a look here, for example : msdn.microsoft.com/en-us/library/…
@georgiosd I've just updated the answer. In the mean time System.Net.Http.Formatting looks like it's moved to nuget.org/packages/Microsoft.AspNet.WebApi.Client package.
So is it true that the method in the original question, HttpContent.ReadAsAsync<T>, is not in Microsoft.AspNet.WebApi.Client? What is the suggested replacement?
@JedatKinports Quite sure it doesn't. The WebAPI.Client package require .NET 4.5. I think the old HttpContentExtensions were for .NET 4.0
r
rosta

I have the same problem, so I simply get JSON string and deserialize to my class:

HttpResponseMessage response = await client.GetAsync("Products");
//get data as Json string 
string data = await response.Content.ReadAsStringAsync();
//use JavaScriptSerializer from System.Web.Script.Serialization
JavaScriptSerializer JSserializer = new JavaScriptSerializer();
//deserialize to your class
products = JSserializer.Deserialize<List<Product>>(data);

Aside from the fact that this does not answer the question, why did this get voted down? Isn't it a reasonable alternative to ReadAsAsync?
probably because you didn't answer the question of where did the extension method go. Writing your own is a poor workaround
It is not necessarily a poor workaround, it is localised and hence not likely to get broken in future nuget updates etc. I'm all for it.
This assumes the reponse has a JSON content-type.
Folks -- This answers 1/2 the question pretty clearly -- "and how do I work around it". +1+1 (the other plus one represents the three plus ones I gave to people who found this answer useful!)
M
Martin Brandl

If you are already using Newtonsoft.Json and don't want to install Microsoft.AspNet.WebApi.Client:

 var myInstance = JsonConvert.DeserializeObject<MyClass>(
   await response.Content.ReadAsStringAsync());

This is what I ended up doing. Trying to use the new System.Text.Json instead proved too much of a hassle due to "Allow non-string JSON values for string properties" not being supported.
M
Mangesh

2021 Update: Looks like the method is removed in .NET5. Alternatively, you can use ReadFromJsonAsync<>() from System.Net.Http.Json.HttpContentJsonExtensions. It solves the purpose.


V
Vasya Milovidov

You can write extention method:

public static async Task<Tout> ReadAsAsync<Tout>(this System.Net.Http.HttpContent content) {
    return Newtonsoft.Json.JsonConvert.DeserializeObject<Tout>(await content.ReadAsStringAsync());
}

It's what I ended up doing - I'm not going to drag an entire DLL for a 2-line method.
@VasyaMilovidov Thank you for sharing your code. Before your suggestion, I spent hours without any success. Your suggestion worked like a charm for my need. As @Liz mentioned no need to install Microsoft.AspNet.WebApi.Client with unnecessary DLLS (at least in my scenario).
I
Ivan Carmenates García

Just right click in your project go Manage NuGet Packages search for Microsoft.AspNet.WebApi.Client install it and you will have access to the extension method.


Who is complaining about what?
T
Tom John

Having hit this one a few times and followed a bunch of suggestions, if you don't find it available after installing the NuGet Microsoft.AspNet.WebApi.Client manually add a reference from the packages folder in the solution to:

\Microsoft.AspNet.WebApi.Client.5.2.6\lib\net45\System.Net.Http.Formatting.dll

And don't get into the trap of adding older references to the System.Net.Http.Formatting.dll NuGet


S
Sercan

Although I had the same problem, the answers in this thread didn't fully help me to fix the problem. For this reason, I decided to write the result of my research in this post. To fix this issue, follow the steps below:

Add the Microsoft.AspNet.WebApi.Client package to the project using NuGet. While inside the ASP.NET solution, open the Package Manager Console by going to Tools > NuGet Package Manager > Package Manager Console in Visual Studio IDE and add the Microsoft.AspNet.WebApi.Client package to the solution.

Install-Package Microsoft.AspNet.WebApi.Client -Version 5.2.7

After its installation, check that the extensions DLL exists on your system. System.Net.Http.Formatting.dll file should be present in the directory shown below as a result of the first step.

{root-solution-directory}\packages\Microsoft.AspNet.WebApi.Client.{package-version}\lib\net45\

Manually add the reference to the relevant project. Right click on the "References" section in the ASP.NET project within the solution click on the "Add Reference..." section. Since the file System.Net.Http.Formatting.dll is an extension, it will not be listed when searched directly like other items in the Microsoft.AspNet.WebApi.Client package. Therefore, to add the DLL file manually, click the "Browse..." button at the bottom of the "Reference Manager" window. Select the System.Net.Http.Formatting.dll file in the directory shown in the second step and check the checkbox to include the DLL file in the project. Include the System.Net.Http namespace in the project to use the features provided by this DLL in the project; using System.Net.Http.Formatting; declaration is available within the HttpContentExtensions static class.

using System.Net.Http;

OPTIONAL: You can achieve a similar solution by installing one of the System.Net.Http.Formatting.Extension or WebApiDoodle.Net.Http.Formatting packages and following the steps above.