HtmlHelperLinkExtensions.RouteLink Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
RouteLink(IHtmlHelper, String, Object) |
Zwraca element kotwicy (<a>), który zawiera ścieżkę adresu URL do określonej trasy. |
RouteLink(IHtmlHelper, String, String) |
Zwraca element kotwicy (<a>), który zawiera ścieżkę adresu URL do określonej trasy. |
RouteLink(IHtmlHelper, String, Object, Object) |
Zwraca element kotwicy (<a>), który zawiera ścieżkę adresu URL do określonej trasy. |
RouteLink(IHtmlHelper, String, String, Object) |
Zwraca element kotwicy (<a>), który zawiera ścieżkę adresu URL do określonej trasy. |
RouteLink(IHtmlHelper, String, String, Object, Object) |
Zwraca element kotwicy (<a>), który zawiera ścieżkę adresu URL do określonej trasy. |
RouteLink(IHtmlHelper, String, Object)
- Źródło:
- HtmlHelperLinkExtensions.cs
- Źródło:
- HtmlHelperLinkExtensions.cs
- Źródło:
- HtmlHelperLinkExtensions.cs
Zwraca element kotwicy (<a>), który zawiera ścieżkę adresu URL do określonej trasy.
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
Parametry
- htmlHelper
- IHtmlHelper
Wystąpienie IHtmlHelper , które jest rozszerzane przez tę metodę.
- linkText
- String
Tekst wewnętrzny elementu kotwicy. Nie może być .null
- routeValues
- Object
Element Object zawierający parametry trasy. Parametry są pobierane przez odbicie, sprawdzając właściwości obiektu Object. Zwykle jest to Object tworzone przy użyciu Object składni inicjatora. Alternatywnie IDictionary<TKey,TValue> wystąpienie zawierające parametry trasy.
Zwraca
Nowy IHtmlContent element zawierający element zakotwiczenia.
Dotyczy
RouteLink(IHtmlHelper, String, String)
- Źródło:
- HtmlHelperLinkExtensions.cs
- Źródło:
- HtmlHelperLinkExtensions.cs
- Źródło:
- HtmlHelperLinkExtensions.cs
Zwraca element kotwicy (<a>), który zawiera ścieżkę adresu URL do określonej trasy.
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
Parametry
- htmlHelper
- IHtmlHelper
Wystąpienie IHtmlHelper , które jest rozszerzane przez tę metodę.
- linkText
- String
Tekst wewnętrzny elementu kotwicy. Nie może być .null
- routeName
- String
Nazwa trasy.
Zwraca
Nowy IHtmlContent element zawierający element zakotwiczenia.
Dotyczy
RouteLink(IHtmlHelper, String, Object, Object)
- Źródło:
- HtmlHelperLinkExtensions.cs
- Źródło:
- HtmlHelperLinkExtensions.cs
- Źródło:
- HtmlHelperLinkExtensions.cs
Zwraca element kotwicy (<a>), który zawiera ścieżkę adresu URL do określonej trasy.
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
Parametry
- htmlHelper
- IHtmlHelper
Wystąpienie IHtmlHelper , które jest rozszerzane przez tę metodę.
- linkText
- String
Tekst wewnętrzny elementu kotwicy. Nie może być .null
- routeValues
- Object
Element Object zawierający parametry trasy. Parametry są pobierane przez odbicie, sprawdzając właściwości obiektu Object. Zwykle jest to Object tworzone przy użyciu Object składni inicjatora. Alternatywnie IDictionary<TKey,TValue> wystąpienie zawierające parametry trasy.
- htmlAttributes
- Object
Element Object zawierający atrybuty HTML elementu . Alternatywnie IDictionary<TKey,TValue> wystąpienie zawierające atrybuty HTML.
Zwraca
Nowy IHtmlContent element zawierający element zakotwiczenia.
Dotyczy
RouteLink(IHtmlHelper, String, String, Object)
- Źródło:
- HtmlHelperLinkExtensions.cs
- Źródło:
- HtmlHelperLinkExtensions.cs
- Źródło:
- HtmlHelperLinkExtensions.cs
Zwraca element kotwicy (<a>), który zawiera ścieżkę adresu URL do określonej trasy.
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
Parametry
- htmlHelper
- IHtmlHelper
Wystąpienie IHtmlHelper , które jest rozszerzane przez tę metodę.
- linkText
- String
Tekst wewnętrzny elementu kotwicy. Nie może być .null
- routeName
- String
Nazwa trasy.
- routeValues
- Object
Element Object zawierający parametry trasy. Parametry są pobierane przez odbicie, sprawdzając właściwości obiektu Object. Zwykle jest to Object tworzone przy użyciu Object składni inicjatora. Alternatywnie IDictionary<TKey,TValue> wystąpienie zawierające parametry trasy.
Zwraca
Nowy IHtmlContent element zawierający element zakotwiczenia.
Dotyczy
RouteLink(IHtmlHelper, String, String, Object, Object)
- Źródło:
- HtmlHelperLinkExtensions.cs
- Źródło:
- HtmlHelperLinkExtensions.cs
- Źródło:
- HtmlHelperLinkExtensions.cs
Zwraca element kotwicy (<a>), który zawiera ścieżkę adresu URL do określonej trasy.
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
Parametry
- htmlHelper
- IHtmlHelper
Wystąpienie IHtmlHelper , które jest rozszerzane przez tę metodę.
- linkText
- String
Tekst wewnętrzny elementu kotwicy. Nie może być .null
- routeName
- String
Nazwa trasy.
- routeValues
- Object
Element Object zawierający parametry trasy. Parametry są pobierane przez odbicie, sprawdzając właściwości obiektu Object. Zwykle jest to Object tworzone przy użyciu Object składni inicjatora. Alternatywnie IDictionary<TKey,TValue> wystąpienie zawierające parametry trasy.
- htmlAttributes
- Object
Element Object zawierający atrybuty HTML elementu . Alternatywnie IDictionary<TKey,TValue> wystąpienie zawierające atrybuty HTML.
Zwraca
Nowy IHtmlContent element zawierający element zakotwiczenia.