非同期http get

http://shokai.org/projects/httpnet/

using Org.Shokai.Web;
using System.Web;

AsyncWebRequest asyncReq = new AsyncWebRequest();
asyncReq.encoding = Encoding.UTF8;
asyncReq.onResponse += (ResponseDelegate)delegate(Response res)
{
  Console.WriteLine(res.content);
};

Params param = new Params();
param.add("q", HttpUtility.UrlEncode("SFCは人を狂わす"));
param.add("ie", "utf-8");
param.add("oe", "utf-8");
asyncReq.get(new Uri("http://www.google.co.jp/search"), param);