I'm new to burrow and HttpModules I was wondering if someone would
explain the reason hehind this check

       private static bool SenderIsIrrelavant(object sender)
        {
            HttpApplication ctx = sender as HttpApplication;

            return  ctx == null ||
                    ctx.Context == null ||
                    ctx.Context.Handler == null ||
                    ctx.Context.Handler is AssemblyResourceLoader ||
                    ctx.Context.Handler is DefaultHttpHandler;
        }

and circumstances under which the various condititions are true. Did I
overlook the tests that explain this?
Thank you for your time.

Cheers,
Aeden


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"NHibernate Contrib - Development Group" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com.ar/group/nhcdevs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to