StopRoutingHandler 构造函数

定义

初始化 StopRoutingHandler 类的新实例。

public:
 StopRoutingHandler();
public StopRoutingHandler ();
Public Sub New ()

示例

以下示例演示如何阻止路由处理 .axd 文件的请求。

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

适用于

另请参阅