HtmlHelper.ActionLink メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定したアクションへの URL パスを含むアンカー (<a>) 要素を返します。
public:
virtual 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
override this.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
パラメーター
- linkText
- String
アンカー要素の内部テキスト。
null
にすることはできません。
- actionName
- String
アクションの名前。
- controllerName
- String
コントローラーの名前。
- protocol
- String
URL のプロトコル (たとえば、"http"、"https")。
- hostname
- String
URL のホスト名。
- fragment
- String
URL フラグメント名 (アンカー名)。
- routeValues
- Object
Objectルートのパラメーターを格納している 。 パラメーターは、 のプロパティ Objectを調べることによってリフレクションによって取得されます。 これは Object 通常、初期化子構文を使用して Object 作成されます。 または、ルート パラメーターを IDictionary<TKey,TValue> 含むインスタンス。
- htmlAttributes
- Object
Object要素の HTML 属性を含む 。 または、HTML 属性を IDictionary<TKey,TValue> 含むインスタンス。
戻り値
アンカー要素を含む新しい IHtmlContent 。