HtmlHelperLinkExtensions.RouteLink 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
RouteLink(IHtmlHelper, String, Object) |
傳回錨點 (<> 包含指定路由 URL 路徑的) 專案。 |
RouteLink(IHtmlHelper, String, String) |
傳回錨點 (<> 包含指定路由 URL 路徑的) 專案。 |
RouteLink(IHtmlHelper, String, Object, Object) |
傳回錨點 (<> 包含指定路由 URL 路徑的) 專案。 |
RouteLink(IHtmlHelper, String, String, Object) |
傳回錨點 (<> 包含指定路由 URL 路徑的) 專案。 |
RouteLink(IHtmlHelper, String, String, Object, Object) |
傳回錨點 (<> 包含指定路由 URL 路徑的) 專案。 |
RouteLink(IHtmlHelper, String, Object)
傳回錨點 (<> 包含指定路由 URL 路徑的) 專案。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ RouteLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ linkText, System::Object ^ routeValues);
public static Microsoft.AspNetCore.Html.IHtmlContent RouteLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string linkText, object routeValues);
static member RouteLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function RouteLink (htmlHelper As IHtmlHelper, linkText As String, routeValues As Object) As IHtmlContent
參數
- htmlHelper
- IHtmlHelper
這個 IHtmlHelper 方法擴充的實例。
- linkText
- String
錨定項目的內部文字。 必須不是 null
。
- routeValues
- Object
Object,包含路由的參數。 參數會透過反映來擷取,方法是檢查 的屬性 Object 。 這 Object 通常是使用 Object 初始化運算式語法所建立。 或者, IDictionary<TKey,TValue> 包含路由參數的實例。
傳回
新的 IHtmlContent ,其中包含錨點專案。
適用於
RouteLink(IHtmlHelper, String, String)
傳回錨點 (<> 包含指定路由 URL 路徑的) 專案。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ RouteLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ linkText, System::String ^ routeName);
public static Microsoft.AspNetCore.Html.IHtmlContent RouteLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string linkText, string routeName);
static member RouteLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function RouteLink (htmlHelper As IHtmlHelper, linkText As String, routeName As String) As IHtmlContent
參數
- htmlHelper
- IHtmlHelper
這個 IHtmlHelper 方法擴充的實例。
- linkText
- String
錨定項目的內部文字。 必須不是 null
。
- routeName
- String
路由的名稱。
傳回
新的 IHtmlContent ,其中包含錨點專案。
適用於
RouteLink(IHtmlHelper, String, Object, Object)
傳回錨點 (<> 包含指定路由 URL 路徑的) 專案。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ RouteLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ linkText, System::Object ^ routeValues, System::Object ^ htmlAttributes);
public static Microsoft.AspNetCore.Html.IHtmlContent RouteLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string linkText, object routeValues, object htmlAttributes);
static member RouteLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * obj * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function RouteLink (htmlHelper As IHtmlHelper, linkText As String, routeValues As Object, htmlAttributes As Object) As IHtmlContent
參數
- htmlHelper
- IHtmlHelper
這個 IHtmlHelper 方法擴充的實例。
- linkText
- String
錨定項目的內部文字。 必須不是 null
。
- routeValues
- Object
Object,包含路由的參數。 參數會透過反映來擷取,方法是檢查 的屬性 Object 。 這 Object 通常是使用 Object 初始化運算式語法所建立。 或者, IDictionary<TKey,TValue> 包含路由參數的實例。
- htmlAttributes
- Object
Object,其中包含 專案的 HTML 屬性。 或者, IDictionary<TKey,TValue> 包含 HTML 屬性的實例。
傳回
新的 IHtmlContent ,其中包含錨點專案。
適用於
RouteLink(IHtmlHelper, String, String, Object)
傳回錨點 (<> 包含指定路由 URL 路徑的) 專案。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ RouteLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ linkText, System::String ^ routeName, System::Object ^ routeValues);
public static Microsoft.AspNetCore.Html.IHtmlContent RouteLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string linkText, string routeName, object routeValues);
static member RouteLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function RouteLink (htmlHelper As IHtmlHelper, linkText As String, routeName As String, routeValues As Object) As IHtmlContent
參數
- htmlHelper
- IHtmlHelper
這個 IHtmlHelper 方法擴充的實例。
- linkText
- String
錨定項目的內部文字。 必須不是 null
。
- routeName
- String
路由的名稱。
- routeValues
- Object
Object,包含路由的參數。 參數會透過反映來擷取,方法是檢查 的屬性 Object 。 這 Object 通常是使用 Object 初始化運算式語法所建立。 或者, IDictionary<TKey,TValue> 包含路由參數的實例。
傳回
新的 IHtmlContent ,其中包含錨點專案。
適用於
RouteLink(IHtmlHelper, String, String, Object, Object)
傳回錨點 (<> 包含指定路由 URL 路徑的) 專案。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ RouteLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ linkText, System::String ^ routeName, System::Object ^ routeValues, System::Object ^ htmlAttributes);
public static Microsoft.AspNetCore.Html.IHtmlContent RouteLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string linkText, string routeName, object routeValues, object htmlAttributes);
static member RouteLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string * obj * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function RouteLink (htmlHelper As IHtmlHelper, linkText As String, routeName As String, routeValues As Object, htmlAttributes As Object) As IHtmlContent
參數
- htmlHelper
- IHtmlHelper
這個 IHtmlHelper 方法擴充的實例。
- linkText
- String
錨定項目的內部文字。 必須不是 null
。
- routeName
- String
路由的名稱。
- routeValues
- Object
Object,包含路由的參數。 參數會透過反映來擷取,方法是檢查 的屬性 Object 。 這 Object 通常是使用 Object 初始化運算式語法所建立。 或者, IDictionary<TKey,TValue> 包含路由參數的實例。
- htmlAttributes
- Object
Object,其中包含 專案的 HTML 屬性。 或者, IDictionary<TKey,TValue> 包含 HTML 屬性的實例。
傳回
新的 IHtmlContent ,其中包含錨點專案。