다음을 통해 공유


IHtmlGenerator.GenerateForm 메서드

정의

<양식> 요소를 생성합니다. 사용자가 양식을 제출하면 이름이 actionName 인 작업이 요청을 처리합니다.

public:
 Microsoft::AspNetCore::Mvc::Rendering::TagBuilder ^ GenerateForm(Microsoft::AspNetCore::Mvc::Rendering::ViewContext ^ viewContext, System::String ^ actionName, System::String ^ controllerName, System::Object ^ routeValues, System::String ^ method, System::Object ^ htmlAttributes);
public Microsoft.AspNetCore.Mvc.Rendering.TagBuilder GenerateForm (Microsoft.AspNetCore.Mvc.Rendering.ViewContext viewContext, string actionName, string controllerName, object routeValues, string method, object htmlAttributes);
abstract member GenerateForm : Microsoft.AspNetCore.Mvc.Rendering.ViewContext * string * string * obj * string * obj -> Microsoft.AspNetCore.Mvc.Rendering.TagBuilder
Public Function GenerateForm (viewContext As ViewContext, actionName As String, controllerName As String, routeValues As Object, method As String, htmlAttributes As Object) As TagBuilder

매개 변수

viewContext
ViewContext

ViewContext 현재 scope 대한 instance.

actionName
String

작업 메서드의 이름입니다.

controllerName
String

컨트롤러의 이름입니다.

routeValues
Object

Object 경로에 대한 매개 변수를 포함하는 입니다. 매개 변수는 의 속성을 검사하여 리플렉션을 통해 검색됩니다 Object. 일반적으로 이 Object 니셜라이저 구문을 사용하여 Object 만들어집니다. 또는 경로 매개 변수를 IDictionary<TKey,TValue> 포함하는 instance.

method
String

GET 또는 POST인 폼을 처리하기 위한 HTTP 메서드입니다.

htmlAttributes
Object

Object 요소에 대한 HTML 특성이 들어 있는 입니다. IDictionary<TKey,TValue> 또는 HTML 특성을 포함하는 instance.

반환

TagBuilder /form> 요소에 <대한 instance.

적용 대상