从 HttpResponseMessage 中提取内容

发布于 2024-12-23 05:20:45 字数 199 浏览 2 评论 0 原文

我正在接收 System.Net.Http.HttpResponseMessage> 类型的对象,如何获取 List

我尝试转换 content 属性并通过其 value 属性从 content 属性获取值,但似乎没有任何效果。

感谢您的帮助!

I'm recieving an object of type System.Net.Http.HttpResponseMessage<List<T>>, how do I get the List<T>?

I tried casting the content property and getting a value from the content property via its value property but nothing seems to work.

Thanks for the help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岁吢 2024-12-30 05:20:45

您可以使用 .ReadAsAsync> Content 属性的方法。

另请阅读答案中的示例。

更新:
这些扩展方法位于 NuGet 包内的 System.Net.Http.Formatting 命名空间 Microsoft.AspNet.WebApi.Client

You can use the .ReadAsAsync<List<T>> method of the Content property.

Please also read my sample from this answer.

Update:
These extension methods are located in the System.Net.Http.Formatting namespace inside the NuGet Package Microsoft.AspNet.WebApi.Client.

零度℉ 2024-12-30 05:20:45

这不再可能了。看看这个:
http://aspnetwebstack.codeplex.com/discussions/350492

This is no longer possible. Check this out:
http://aspnetwebstack.codeplex.com/discussions/350492

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文