如何找到已加载的路由 http 模块?
我正在使用传统的 Asp.Net 网站,其中使用 System.Web.Routing 模块。我想找到知道路由http模块是否加载的方法?
I am using the traditional Asp.Net website in which I am using the System.Web.Routing module. I want to find the way in which I know that the routing http modules is loaded or not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要知道的只是在 web.config 文件中配置的模块名称
例如,我的名称为:“UrlRoutingModule”,您可以从此处的代码片段中看到(针对 StackOverflow 格式化):
一旦您拥有了该名称,您需要做的就是检查应用程序的 Modules 属性(其模块名称的类型为 HttpModuleCollection ,并且验证它不为空。如果您想做一些额外的检查,您也可以检查对象的类型(未显示)。
All you need to know is the module's name as you have it configured in your web.config file
for example mine is named: "UrlRoutingModule" as you can see from this snippet here (formatted for StackOverflow):
once you have that, all you need to do is check the application's Modules property (which is of type HttpModuleCollection for your module's name and verify that it's not null. If you want to do some extra checking you can check the type of the object too (not shown).