Is it possible to determine the managed pipeline IIS7 is running under in ASP.NET?
views:
26answers:
1
+3
A:
Do you mean the integrated pipeline mode? If so then you're looking for: HttpRuntime.UsingIntegratedPipeline
.
if(HttpRuntime.UsingIntegratedPipeline) {
//Yep we're using it
}
Nick Craver
2010-05-30 12:24:16