IHtmlHelper.RouteLink Méthode

Définition

Retourne un élément d’ancre (<a>) qui contient un chemin d’URL vers l’itinéraire spécifié.

public:
 Microsoft::AspNetCore::Html::IHtmlContent ^ RouteLink(System::String ^ linkText, System::String ^ routeName, System::String ^ protocol, System::String ^ hostName, System::String ^ fragment, System::Object ^ routeValues, System::Object ^ htmlAttributes);
public Microsoft.AspNetCore.Html.IHtmlContent RouteLink (string linkText, string routeName, string protocol, string hostName, string fragment, object routeValues, object htmlAttributes);
abstract member RouteLink : string * string * string * string * string * obj * obj -> Microsoft.AspNetCore.Html.IHtmlContent
Public Function RouteLink (linkText As String, routeName As String, protocol As String, hostName As String, fragment As String, routeValues As Object, htmlAttributes As Object) As IHtmlContent

Paramètres

linkText
String

Texte interne de l'élément d'ancrage. Ne doit pas être null.

routeName
String

Nom de l'itinéraire.

protocol
String

Protocole de l'URL, par exemple « http » ou « https ».

hostName
String

Nom d'hôte de l'URL.

fragment
String

Nom du fragment d'URL (nom de l'ancre).

routeValues
Object

Object qui contient les paramètres d’un itinéraire. Les paramètres sont récupérés par réflexion en examinant les propriétés de .Object Il Object est généralement créé à l’aide de Object la syntaxe d’initialiseur. Vous pouvez également utiliser une IDictionary<TKey,TValue> instance contenant les paramètres de route.

htmlAttributes
Object

Object qui contient les attributs HTML de l’élément . IDictionary<TKey,TValue> Une instance contenant les attributs HTML.

Retours

Nouveau IHtmlContent contenant l’élément anchor.

S’applique à