开发者

Is it possible to determine the managed pipeline IIS7 is running under in ASP.NET?

开发者 https://www.devze.com 2023-01-02 03:47 出处:网络
Is it possible to determine the manag开发者_如何学运维ed pipeline IIS7 is running under in ASP.NET?Do you mean the integrated pipeline mode?If so then you\'re looking for: HttpRuntime.UsingIntegratedP

Is it possible to determine the manag开发者_如何学运维ed pipeline IIS7 is running under in ASP.NET?


Do you mean the integrated pipeline mode? If so then you're looking for: HttpRuntime.UsingIntegratedPipeline.

if(HttpRuntime.UsingIntegratedPipeline) {
  //Yep we're using it
}
0

精彩评论

暂无评论...
验证码 换一张
取 消