Route.Url 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定路由的 URL 模式。
public:
property System::String ^ Url { System::String ^ get(); void set(System::String ^ value); };
public string Url { get; set; }
member this.Url : string with get, set
Public Property Url As String
屬性值
比對路由與 URL 的模式。
例外狀況
沒有以分隔符號或常值常數分隔 URL 區段。
範例
下列範例示範如何在 類別建構函式中設定 Url 屬性。 此模式包含第一個區段的常值 「Category」,以及接下來兩個區段的 URL 參數。
void Application_Start(object sender, EventArgs e)
{
RegisterRoutes(RouteTable.Routes);
}
public static void RegisterRoutes(RouteCollection routes)
{
routes.Add(new Route
(
"Category/{action}/{categoryName}"
, new CategoryRouteHandler()
));
}
Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
RegisterRoutes(RouteTable.Routes)
End Sub
Shared Sub RegisterRoutes(ByVal routes As RouteCollection)
Dim urlPattern As String
Dim categoryRoute As Route
urlPattern = "Category/{action}/{categoryName}"
categoryRoute = New Route(urlPattern, New CategoryRouteHandler)
routes.Add(categoryRoute)
End Sub
備註
當您將值指派給 Url 屬性時,當剖析 URL 時, /
字元會解譯為分隔符。 使用大括號 ({}
) 來定義稱為 URL 參數的變數。 URL 中相符區段的值會指派給 URL 參數。 屬性中 Url 未以大括弧括住的任何值都會被視為常值常數。
?
屬性中Url不允許字元。 每個 URL 區段都必須以分隔符或常值常數分隔。 您可以使用 {{
或 }}
作為大括號字元的逸出字元。