IHtmlHelper.ActionLink Méthode

Définition

Retourne un élément d’ancrage (<a>) qui contient un chemin d’URL vers l’action spécifiée.

public:
 Microsoft::AspNetCore::Html::IHtmlContent ^ ActionLink(System::String ^ linkText, System::String ^ actionName, System::String ^ controllerName, System::String ^ protocol, System::String ^ hostname, System::String ^ fragment, System::Object ^ routeValues, System::Object ^ htmlAttributes);
public Microsoft.AspNetCore.Html.IHtmlContent ActionLink (string linkText, string actionName, string controllerName, string protocol, string hostname, string fragment, object routeValues, object htmlAttributes);
abstract member ActionLink : string * string * string * string * string * string * obj * obj -> Microsoft.AspNetCore.Html.IHtmlContent
Public Function ActionLink (linkText As String, actionName As String, controllerName 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.

actionName
String

Nom de l’action.

controllerName
String

Nom du contrôleur.

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 la Object syntaxe d’initialiseur. IDictionary<TKey,TValue> Une instance contenant les paramètres d’itinéraire.

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 à