RouteCollectionExtensions.IgnoreRoute メソッド

定義

オーバーロード

IgnoreRoute(RouteCollection, String)

使用可能なルートのリストで、指定された URL ルートを無視します。

IgnoreRoute(RouteCollection, String, Object)

使用可能なルートのリストおよび制約のリストで、指定された URL ルートを無視します。

IgnoreRoute(RouteCollection, String)

使用可能なルートのリストで、指定された URL ルートを無視します。

public static void IgnoreRoute (this System.Web.Routing.RouteCollection routes, string url);
static member IgnoreRoute : System.Web.Routing.RouteCollection * string -> unit
<Extension()>
Public Sub IgnoreRoute (routes As RouteCollection, url As String)

パラメーター

routes
RouteCollection

アプリケーションのルートのコレクション。

url
String

無視するルートの URL パターン。

例外

routesまたは url パラメーターが null です。

適用対象

IgnoreRoute(RouteCollection, String, Object)

使用可能なルートのリストおよび制約のリストで、指定された URL ルートを無視します。

public static void IgnoreRoute (this System.Web.Routing.RouteCollection routes, string url, object constraints);
static member IgnoreRoute : System.Web.Routing.RouteCollection * string * obj -> unit
<Extension()>
Public Sub IgnoreRoute (routes As RouteCollection, url As String, constraints As Object)

パラメーター

routes
RouteCollection

アプリケーションのルートのコレクション。

url
String

無視するルートの URL パターン。

constraints
Object

パラメーターの値を指定する式の url セット。

例外

routesまたは url パラメーターが null です。

適用対象