HttpClient 存储在哪个程序集中
我想使用 WCF Rest 服务中的 HttpClient
类来创建一个客户端来调用 Rest 服务。我听说它已被纳入 .net 4.0,但不知道它存储在哪个程序集中。
I want to use the HttpClient
class from the WCF Rest Service to create a client to call rest
services. I heard it was rolled into .net 4.0 but don't know the assembly it's stored in.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
根据 此 MSDN 页面,它是 .NET 4.5 中的新功能。
如果您使用的是 .NET 4.5,它将位于 System.Net.Http 程序集中。
According to this MSDN page, it is new in .NET 4.5.
If you're on .NET 4.5, it will be in the System.Net.Http assembly.
当您等待 .net 4.5 推出时,您可以从 Nuget 获取 4.0 版本。 http://nuget.org/packages/System.Net.Http
While you are waiting for .net 4.5 to roll out, you can get a 4.0 version from Nuget. http://nuget.org/packages/System.Net.Http
只需查看文档< /a>:
Just see the documentation:
WCF REST Starter Kit Preview 2 包含一组旨在简化与 REST Web 服务交互的类。通信是使用 HttpClient 类在 Microsoft.Http 命名空间中的其他类型的帮助下执行的。这些类型可以在入门工具包的 Assemblies 文件夹中的 Microsoft.Http.dll 程序集中找到。
链接1:HttpClient简介
链接2:msdn.microsoft.com
链接 3:如何在 C# 中使用 REST,包括 PUT、POST 和 DELETE?
The WCF REST Starter Kit Preview 2 includes a set of classes designed to simplify interaction with REST web services. The communications are performed using the HttpClient class with the help of other types from the Microsoft.Http namespace. These types can be found in the Microsoft.Http.dll assembly located in the Assemblies folder of the starter kit.
link 1: Introduction to the HttpClient
link 2: msdn.microsoft.com
link 3: How to consume REST in C# including PUT, POST and DELETE?