Skip to content

Instantly share code, notes, and snippets.

@micahasmith
Created May 8, 2012 14:54
Show Gist options
  • Save micahasmith/2635903 to your computer and use it in GitHub Desktop.
Save micahasmith/2635903 to your computer and use it in GitHub Desktop.
httphandler example
public class nonasync_httphandler_test : IHttpHandler
{
public void ProcessRequest(HttpContext c)
{
TestMethods.Handle(c);
}
public bool IsReusable
{
get
{
return true;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment