是否有可能确定IIS7在ASP.NET中运行的托管管道?

Pet*_*ras 2 asp.net iis-7 pipeline managed

是否有可能确定IIS7在ASP.NET中运行的托管管道?

Nic*_*ver 5

你的意思是集成管道模式?如果是这样,那么你正在寻找:HttpRuntime.UsingIntegratedPipeline.

if(HttpRuntime.UsingIntegratedPipeline) {
  //Yep we're using it
}
Run Code Online (Sandbox Code Playgroud)