- 授权协议: GPLv2
- 开发语言: C#
- 操作系统: Windows
- 软件首页: http://httplib.codeplex.com/
- 软件文档: http://httplib.codeplex.com/
软件介绍
HttpLib 可以用来简化在 C# 应用中异步的访问 Web 服务的操作。同时包含文件上传和访问网页的方法。
支持:
- GET
-
POST
- Form Encoded
- Multipart File Upload
- PUT
- HEAD
- DELETE
示例代码:
using Redslide.HttpLib;
Request.Get("http://www.oschina.net/",
result=>
{
Console.Write(result);
});
Introduction to Tornado
Michael Dory、Adam Parrish、Brendan Berg / O'Reilly Media / 2012-3-28 / USD 23.99
Tornado is a scalable, non-blocking web server and web application framework written in Python. It is also light-weight to deploy, fun to write for, and incredibly powerful. Tornado was written with p......一起来看看 《Introduction to Tornado》 这本书的介绍吧!
