Created
May 8, 2012 20:56
-
-
Save micahasmith/2639215 to your computer and use it in GitHub Desktop.
Revisions
-
micahasmith revised this gist
May 8, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public void ProcessRequest (HttpContext context) { public bool IsReusable { get { return true; } } } -
micahasmith created this gist
May 8, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ public class nonasync_webrequest_test : IHttpHandler { public void ProcessRequest (HttpContext context) { var r = new RequestState() { Wr = WebRequest.Create("http://www.google.com"), Cxt = context }; r.Wr.Method = "GET"; var s= r.Wr.GetResponse(); r.Cxt.Response.ContentType = "text/plain"; r.Cxt.Response.Write(string.Format("Hello World async {0}", RequestState.ReadStream(s.GetResponseStream()))); } public bool IsReusable { get { return false; } } }