May 2010
12 posts
1 tag
1 tag
Unit testable IHttpModule and IHttpHandler
IHttpModule
As you probably are aware an IHttpModule allows you to wire into the Asp.net pipeline and listen for events to fire. If you look at the basic IHttpModule things are fairly straight forward and are not very complex at all.
public class MyAwesomeModule : IHttpModule
{
#region IHttpModule Members
public void Dispose()
{
}
public void...
2 tags
Sunday
Time to relax on the back porch with a glass of Three Philosophers and listen to the birds chirp.