DefaultHtmlGenerator.GenerateActionLink 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
< > 작업에 대한 링크에 대한 요소를 생성합니다.
public:
virtual Microsoft::AspNetCore::Mvc::Rendering::TagBuilder ^ GenerateActionLink(Microsoft::AspNetCore::Mvc::Rendering::ViewContext ^ viewContext, 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 virtual Microsoft.AspNetCore.Mvc.Rendering.TagBuilder GenerateActionLink (Microsoft.AspNetCore.Mvc.Rendering.ViewContext viewContext, string linkText, string actionName, string controllerName, string protocol, string hostname, string fragment, object routeValues, object htmlAttributes);
abstract member GenerateActionLink : Microsoft.AspNetCore.Mvc.Rendering.ViewContext * string * string * string * string * string * string * obj * obj -> Microsoft.AspNetCore.Mvc.Rendering.TagBuilder
override this.GenerateActionLink : Microsoft.AspNetCore.Mvc.Rendering.ViewContext * string * string * string * string * string * string * obj * obj -> Microsoft.AspNetCore.Mvc.Rendering.TagBuilder
Public Overridable Function GenerateActionLink (viewContext As ViewContext, 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 TagBuilder
매개 변수
- viewContext
- ViewContext
ViewContext 현재 scope 대한 instance.
- linkText
- String
요소 내부에 삽입할 텍스트입니다.
- actionName
- String
작업 메서드의 이름입니다.
- controllerName
- String
컨트롤러의 이름입니다.
- protocol
- String
생성된 링크에 대한 프로토콜(체계)입니다.
- hostname
- String
생성된 링크의 호스트 이름입니다.
- fragment
- String
생성된 링크의 조각입니다.
- routeValues
- Object
Object 경로에 대한 매개 변수를 포함하는 입니다. 매개 변수는 의 속성을 검사하여 리플렉션을 통해 검색됩니다 Object. 일반적으로 이 Object 니셜라이저 구문을 사용하여 Object 만들어집니다. 또는 경로 매개 변수를 IDictionary<TKey,TValue> 포함하는 instance.
- htmlAttributes
- Object
Object 요소에 대한 HTML 특성이 들어 있는 입니다. IDictionary<TKey,TValue> 또는 HTML 특성을 포함하는 instance.
반환
요소에 TagBuilder 대한 <> instance.