从 HttpResponseMessage 中提取内容
我正在接收 System.Net.Http.HttpResponseMessage
类型的对象,如何获取 >
List
?
我尝试转换 content 属性并通过其 value 属性从 content 属性获取值,但似乎没有任何效果。
感谢您的帮助!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 .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.这不再可能了。看看这个:
http://aspnetwebstack.codeplex.com/discussions/350492
This is no longer possible. Check this out:
http://aspnetwebstack.codeplex.com/discussions/350492