ASP.NET で IIS7 が実行されているマネージ パイプラインを特定することはできますか?
1 に答える
5
統合パイプライン モードのことですか。もしそうなら、あなたが探しているのは: HttpRuntime.UsingIntegratedPipeline
.
if(HttpRuntime.UsingIntegratedPipeline) {
//Yep we're using it
}
于 2010-05-30T12:24:16.170 に答える