RouteCollectionExtensions.MapRoute 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
MapRoute(RouteCollection, String, String) |
對應指定的 URL 路徑。 |
MapRoute(RouteCollection, String, String, Object) |
對應指定的 URL 路由並設定預設路由值。 |
MapRoute(RouteCollection, String, String, String[]) |
對應指定的 URL 路由並設定命名空間。 |
MapRoute(RouteCollection, String, String, Object, Object) |
對應指定的 URL 路由並設定預設路由值和條件約束。 |
MapRoute(RouteCollection, String, String, Object, String[]) |
對應指定的 URL 路由並設定預設路由值和命名空間。 |
MapRoute(RouteCollection, String, String, Object, Object, String[]) |
對應指定的 URL 路由並設定預設路由值、條件約束和命名空間。 |
MapRoute(RouteCollection, String, String)
對應指定的 URL 路徑。
public static System.Web.Routing.Route MapRoute (this System.Web.Routing.RouteCollection routes, string name, string url);
static member MapRoute : System.Web.Routing.RouteCollection * string * string -> System.Web.Routing.Route
<Extension()>
Public Function MapRoute (routes As RouteCollection, name As String, url As String) As Route
參數
- routes
- RouteCollection
應用程式的路由集合。
- name
- String
要對應之路由的名稱。
- url
- String
路由的 URL 模式。
傳回
已對應之路徑的參考。
例外狀況
routes
或 url
參數為 null。
適用於
MapRoute(RouteCollection, String, String, Object)
對應指定的 URL 路由並設定預設路由值。
public static System.Web.Routing.Route MapRoute (this System.Web.Routing.RouteCollection routes, string name, string url, object defaults);
static member MapRoute : System.Web.Routing.RouteCollection * string * string * obj -> System.Web.Routing.Route
<Extension()>
Public Function MapRoute (routes As RouteCollection, name As String, url As String, defaults As Object) As Route
參數
- routes
- RouteCollection
應用程式的路由集合。
- name
- String
要對應之路由的名稱。
- url
- String
路由的 URL 模式。
- defaults
- Object
包含預設路由值的物件。
傳回
已對應之路徑的參考。
例外狀況
routes
或 url
參數為 null。
適用於
MapRoute(RouteCollection, String, String, String[])
對應指定的 URL 路由並設定命名空間。
public static System.Web.Routing.Route MapRoute (this System.Web.Routing.RouteCollection routes, string name, string url, string[] namespaces);
static member MapRoute : System.Web.Routing.RouteCollection * string * string * string[] -> System.Web.Routing.Route
<Extension()>
Public Function MapRoute (routes As RouteCollection, name As String, url As String, namespaces As String()) As Route
參數
- routes
- RouteCollection
應用程式的路由集合。
- name
- String
要對應之路由的名稱。
- url
- String
路由的 URL 模式。
- namespaces
- String[]
應用程式的命名空間集合。
傳回
已對應之路徑的參考。
例外狀況
routes
或 url
參數為 null。
適用於
MapRoute(RouteCollection, String, String, Object, Object)
對應指定的 URL 路由並設定預設路由值和條件約束。
public static System.Web.Routing.Route MapRoute (this System.Web.Routing.RouteCollection routes, string name, string url, object defaults, object constraints);
static member MapRoute : System.Web.Routing.RouteCollection * string * string * obj * obj -> System.Web.Routing.Route
<Extension()>
Public Function MapRoute (routes As RouteCollection, name As String, url As String, defaults As Object, constraints As Object) As Route
參數
- routes
- RouteCollection
應用程式的路由集合。
- name
- String
要對應之路由的名稱。
- url
- String
路由的 URL 模式。
- defaults
- Object
包含預設路由值的物件。
- constraints
- Object
一組運算式,指定 參數的值 url
。
傳回
已對應之路徑的參考。
例外狀況
routes
或 url
參數為 null。
適用於
MapRoute(RouteCollection, String, String, Object, String[])
對應指定的 URL 路由並設定預設路由值和命名空間。
public static System.Web.Routing.Route MapRoute (this System.Web.Routing.RouteCollection routes, string name, string url, object defaults, string[] namespaces);
static member MapRoute : System.Web.Routing.RouteCollection * string * string * obj * string[] -> System.Web.Routing.Route
<Extension()>
Public Function MapRoute (routes As RouteCollection, name As String, url As String, defaults As Object, namespaces As String()) As Route
參數
- routes
- RouteCollection
應用程式的路由集合。
- name
- String
要對應之路由的名稱。
- url
- String
路由的 URL 模式。
- defaults
- Object
包含預設路由值的物件。
- namespaces
- String[]
應用程式的命名空間集合。
傳回
已對應之路徑的參考。
例外狀況
routes
或 url
參數為 null。
適用於
MapRoute(RouteCollection, String, String, Object, Object, String[])
對應指定的 URL 路由並設定預設路由值、條件約束和命名空間。
public static System.Web.Routing.Route MapRoute (this System.Web.Routing.RouteCollection routes, string name, string url, object defaults, object constraints, string[] namespaces);
static member MapRoute : System.Web.Routing.RouteCollection * string * string * obj * obj * string[] -> System.Web.Routing.Route
<Extension()>
Public Function MapRoute (routes As RouteCollection, name As String, url As String, defaults As Object, constraints As Object, namespaces As String()) As Route
參數
- routes
- RouteCollection
應用程式的路由集合。
- name
- String
要對應之路由的名稱。
- url
- String
路由的 URL 模式。
- defaults
- Object
包含預設路由值的物件。
- constraints
- Object
一組運算式,指定 參數的值 url
。
- namespaces
- String[]
應用程式的命名空間集合。
傳回
已對應之路徑的參考。
例外狀況
routes
或 url
參數為 null。