Provides a way to specify that ASP.NET routing should not handle requests for a URL pattern.

ex:

routes.Add(new Route("{resource}.axd/{*pathInfo}", new StopRoutingHandler()));

The StopRoutingHandler class enables you to specify that ASP.NET routing should not handle certain URL requests. You prevent routing from handling certain requests by defining a route and specifying that the StopRoutingHandler class should be used to handle that route's pattern. When a request is handled by a StopRoutingHandler object, the StopRoutingHandler object blocks any additional processing of the request as a route. Instead, the request is processed as an ASP.NET page, Web service, or other ASP.NET endpoint.

最新文章

  1. 安装dubbo-admin遇到的问题和解决之道
  2. Comet、SSE、技术
  3. 【C语言入门教程】2.3 整型数据
  4. Aggregation 聚集
  5. PHP+七牛云存储上传图片代码片段
  6. hdu 5167 Fibonacci 打表
  7. ubuntu网络配置相关知识(转载)
  8. [转] 强大的python字符串解析
  9. PHP 注释 数据类型 变量的定义/输出 类型的获取/转换 可变变量
  10. redis 开启远程访问权限
  11. 数据库_存储过程简介(oracle版)
  12. MYSQLi数据访问查询数据
  13. python文件打包
  14. intellIJ IDEA配置maven相关问题记录
  15. 基于angular2+ 的 http服务封装
  16. java将int类型的变量转化成String类型的
  17. cocos2dx各个版本下载地址
  18. C# Debug
  19. cocos2dx 3.x 精灵重叠时点击最上层的精灵
  20. PollingProvider方法的使用及示例

热门文章

  1. 转:Process类的使用
  2. flask 请求上下文
  3. jquery遍历获取每一行数据进行对比
  4. linux学习笔记---grep
  5. Python基础二_操作字符串常用方法、字典、文件读取
  6. 常用的node.js模块
  7. maven war工程重命名
  8. table表格超出部分显示省略号
  9. cat <<-EOF >&2
  10. Nginx和PHP上传文件大小的限制