Created
May 8, 2012 20:56
-
-
Save micahasmith/2639215 to your computer and use it in GitHub Desktop.
nonasync web request httphandler
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 characters
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 true; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
retested with IsReusable=true