HtmlHelperLinkExtensions.ActionLink 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
ActionLink(IHtmlHelper, String, String) |
지정된 작업에 대한 URL 경로가 포함된 앵커(<a>) 요소를 반환합니다. |
ActionLink(IHtmlHelper, String, String, Object) |
지정된 작업에 대한 URL 경로가 포함된 앵커(<a>) 요소를 반환합니다. |
ActionLink(IHtmlHelper, String, String, String) |
지정된 작업에 대한 URL 경로가 포함된 앵커(<a>) 요소를 반환합니다. |
ActionLink(IHtmlHelper, String, String, Object, Object) |
지정된 작업에 대한 URL 경로가 포함된 앵커(<a>) 요소를 반환합니다. |
ActionLink(IHtmlHelper, String, String, String, Object) |
지정된 작업에 대한 URL 경로가 포함된 앵커(<a>) 요소를 반환합니다. |
ActionLink(IHtmlHelper, String, String, String, Object, Object) |
지정된 작업에 대한 URL 경로가 포함된 앵커(<a>) 요소를 반환합니다. |
ActionLink(IHtmlHelper, String, String)
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
지정된 작업에 대한 URL 경로가 포함된 앵커(<a>) 요소를 반환합니다.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ActionLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ helper, System::String ^ linkText, System::String ^ actionName);
public static Microsoft.AspNetCore.Html.IHtmlContent ActionLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper helper, string linkText, string actionName);
static member ActionLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ActionLink (helper As IHtmlHelper, linkText As String, actionName As String) As IHtmlContent
매개 변수
- helper
- IHtmlHelper
이 메서드가 IHtmlHelper 확장되는 instance.
- linkText
- String
앵커 요소의 내부 텍스트입니다.
null
이 아니어야 합니다.
- actionName
- String
작업 이름입니다.
반환
앵커 요소를 포함하는 새 IHtmlContent 입니다.
적용 대상
ActionLink(IHtmlHelper, String, String, Object)
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
지정된 작업에 대한 URL 경로가 포함된 앵커(<a>) 요소를 반환합니다.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ActionLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ helper, System::String ^ linkText, System::String ^ actionName, System::Object ^ routeValues);
public static Microsoft.AspNetCore.Html.IHtmlContent ActionLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper helper, string linkText, string actionName, object routeValues);
static member ActionLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ActionLink (helper As IHtmlHelper, linkText As String, actionName As String, routeValues As Object) As IHtmlContent
매개 변수
- helper
- IHtmlHelper
이 메서드가 IHtmlHelper 확장되는 instance.
- linkText
- String
앵커 요소의 내부 텍스트입니다.
null
이 아니어야 합니다.
- actionName
- String
작업 이름입니다.
- routeValues
- Object
Object 경로에 대한 매개 변수를 포함하는 입니다. 매개 변수는 의 속성을 검사하여 리플렉션을 통해 검색됩니다 Object. 일반적으로 이 Object 니셜라이저 구문을 사용하여 Object 만들어집니다. 또는 경로 매개 변수를 IDictionary<TKey,TValue> 포함하는 instance.
반환
앵커 요소를 포함하는 새 IHtmlContent 입니다.
적용 대상
ActionLink(IHtmlHelper, String, String, String)
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
지정된 작업에 대한 URL 경로가 포함된 앵커(<a>) 요소를 반환합니다.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ActionLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ helper, System::String ^ linkText, System::String ^ actionName, System::String ^ controllerName);
public static Microsoft.AspNetCore.Html.IHtmlContent ActionLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper helper, string linkText, string actionName, string controllerName);
static member ActionLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ActionLink (helper As IHtmlHelper, linkText As String, actionName As String, controllerName As String) As IHtmlContent
매개 변수
- helper
- IHtmlHelper
이 메서드가 IHtmlHelper 확장되는 instance.
- linkText
- String
앵커 요소의 내부 텍스트입니다.
null
이 아니어야 합니다.
- actionName
- String
작업 이름입니다.
- controllerName
- String
컨트롤러의 이름입니다.
반환
앵커 요소를 포함하는 새 IHtmlContent 입니다.
적용 대상
ActionLink(IHtmlHelper, String, String, Object, Object)
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
지정된 작업에 대한 URL 경로가 포함된 앵커(<a>) 요소를 반환합니다.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ActionLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ helper, System::String ^ linkText, System::String ^ actionName, System::Object ^ routeValues, System::Object ^ htmlAttributes);
public static Microsoft.AspNetCore.Html.IHtmlContent ActionLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper helper, string linkText, string actionName, object routeValues, object htmlAttributes);
static member ActionLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string * obj * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ActionLink (helper As IHtmlHelper, linkText As String, actionName As String, routeValues As Object, htmlAttributes As Object) As IHtmlContent
매개 변수
- helper
- IHtmlHelper
이 메서드가 IHtmlHelper 확장되는 instance.
- linkText
- String
앵커 요소의 내부 텍스트입니다.
null
이 아니어야 합니다.
- actionName
- String
작업 이름입니다.
- routeValues
- Object
Object 경로에 대한 매개 변수를 포함하는 입니다. 매개 변수는 의 속성을 검사하여 리플렉션을 통해 검색됩니다 Object. 일반적으로 이 Object 니셜라이저 구문을 사용하여 Object 만들어집니다. 또는 경로 매개 변수를 IDictionary<TKey,TValue> 포함하는 instance.
- htmlAttributes
- Object
Object 요소에 대한 HTML 특성을 포함하는 입니다. IDictionary<TKey,TValue> 또는 HTML 특성을 포함하는 instance.
반환
앵커 요소를 포함하는 새 IHtmlContent 입니다.
적용 대상
ActionLink(IHtmlHelper, String, String, String, Object)
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
지정된 작업에 대한 URL 경로가 포함된 앵커(<a>) 요소를 반환합니다.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ActionLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ helper, System::String ^ linkText, System::String ^ actionName, System::String ^ controllerName, System::Object ^ routeValues);
public static Microsoft.AspNetCore.Html.IHtmlContent ActionLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper helper, string linkText, string actionName, string controllerName, object routeValues);
static member ActionLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ActionLink (helper As IHtmlHelper, linkText As String, actionName As String, controllerName As String, routeValues As Object) As IHtmlContent
매개 변수
- helper
- IHtmlHelper
이 메서드가 IHtmlHelper 확장되는 instance.
- linkText
- String
앵커 요소의 내부 텍스트입니다.
null
이 아니어야 합니다.
- actionName
- String
작업 이름입니다.
- controllerName
- String
컨트롤러의 이름입니다.
- routeValues
- Object
Object 경로에 대한 매개 변수를 포함하는 입니다. 매개 변수는 의 속성을 검사하여 리플렉션을 통해 검색됩니다 Object. 일반적으로 이 Object 니셜라이저 구문을 사용하여 Object 만들어집니다. 또는 경로 매개 변수를 IDictionary<TKey,TValue> 포함하는 instance.
반환
앵커 요소를 포함하는 새 IHtmlContent 입니다.
적용 대상
ActionLink(IHtmlHelper, String, String, String, Object, Object)
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
지정된 작업에 대한 URL 경로가 포함된 앵커(<a>) 요소를 반환합니다.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ActionLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ helper, System::String ^ linkText, System::String ^ actionName, System::String ^ controllerName, System::Object ^ routeValues, System::Object ^ htmlAttributes);
public static Microsoft.AspNetCore.Html.IHtmlContent ActionLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper helper, string linkText, string actionName, string controllerName, object routeValues, object htmlAttributes);
static member ActionLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string * string * obj * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ActionLink (helper As IHtmlHelper, linkText As String, actionName As String, controllerName As String, routeValues As Object, htmlAttributes As Object) As IHtmlContent
매개 변수
- helper
- IHtmlHelper
이 메서드가 IHtmlHelper 확장되는 instance.
- linkText
- String
앵커 요소의 내부 텍스트입니다.
null
이 아니어야 합니다.
- actionName
- String
작업 이름입니다.
- controllerName
- String
컨트롤러의 이름입니다.
- routeValues
- Object
Object 경로에 대한 매개 변수를 포함하는 입니다. 매개 변수는 의 속성을 검사하여 리플렉션을 통해 검색됩니다 Object. 일반적으로 이 Object 니셜라이저 구문을 사용하여 Object 만들어집니다. 또는 경로 매개 변수를 IDictionary<TKey,TValue> 포함하는 instance.
- htmlAttributes
- Object
Object 요소에 대한 HTML 특성을 포함하는 입니다. IDictionary<TKey,TValue> 또는 HTML 특성을 포함하는 instance.
반환
앵커 요소를 포함하는 새 IHtmlContent 입니다.