检查是否处于集成管道模式
是否可以检查我们的代码是否在集成管道模式下执行?
有一些 ASP.NET 类属性只能在集成管道模式下工作,如果有办法测试我们的代码是否在该环境中执行,我希望避免引发异常。
Is it possible to check if our code is executing in Integrated Pipeline Mode or not?
There are some ASP.NET class properties that only work in Integrated Pipeline Mode, and I want to avoid raising an exception if there is a way to test if our code is executing in that environment or not.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找
HttpRuntime.UsingIntegratedPipeline< /code> 属性
。
You're looking for the
HttpRuntime.UsingIntegratedPipeline
property.