转自http://www.oschina.net/p/c-sharp-http-client

这是一个 HTTP 客户端开发包 ,提供非常简单的 API,采用 C# 编写用来发送 HTTP 请求以及接收 HTTP 回应。

该库比 .NET 自带的 HttpWebRequest 要简单得多,类似 Java 版的 HttpClient。支持 GET、POST 和文件上传,支持重定向和代理服务器。

目前还不支持的:

  • Transfer-Encoding: gzip
  • Requests with keep-alive header.
  • Expiration of cookies.
  • Using proxies that need password.
  • HTTPS and SSL.

相关文章:

  • 2021-08-26
  • 2021-06-02
  • 2022-02-18
  • 2022-03-02
  • 2022-02-12
  • 2022-02-13
  • 2022-12-23
  • 2022-02-27
猜你喜欢
  • 2022-01-10
  • 2021-11-07
  • 2022-12-23
  • 2021-12-23
  • 2021-06-19
  • 2022-02-07
  • 2022-01-19
相关资源
相似解决方案