HttpClient 存储在哪个程序集中

发布于 2024-12-10 05:46:24 字数 106 浏览 0 评论 0原文

我想使用 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 技术交流群。

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

发布评论

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

评论(4

森林散布 2024-12-17 05:46:24

根据 此 MSDN 页面,它是 .NET 4.5 中的新功能。

“支持:4.5”

如果您使用的是 .NET 4.5,它将位于 System.Net.Http 程序集中。

According to this MSDN page, it is new in .NET 4.5.

"Supported in: 4.5"

If you're on .NET 4.5, it will be in the System.Net.Http assembly.

紫瑟鸿黎 2024-12-17 05:46:24

当您等待 .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

陌上青苔 2024-12-17 05:46:24

只需查看文档< /a>:

命名空间:System.Net.Http
程序集:System.Net.Http(在
System.Net.Http.dll

Just see the documentation:

Namespace: System.Net.Http
Assembly: System.Net.Http (in
System.Net.Http.dll)

吾家有女初长成 2024-12-17 05:46:24

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?

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