DefaultHtmlGenerator.GenerateFormCore 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
<양식> 요소를 생성합니다.
protected:
virtual Microsoft::AspNetCore::Mvc::Rendering::TagBuilder ^ GenerateFormCore(Microsoft::AspNetCore::Mvc::Rendering::ViewContext ^ viewContext, System::String ^ action, System::String ^ method, System::Object ^ htmlAttributes);
protected virtual Microsoft.AspNetCore.Mvc.Rendering.TagBuilder GenerateFormCore (Microsoft.AspNetCore.Mvc.Rendering.ViewContext viewContext, string action, string method, object htmlAttributes);
abstract member GenerateFormCore : Microsoft.AspNetCore.Mvc.Rendering.ViewContext * string * string * obj -> Microsoft.AspNetCore.Mvc.Rendering.TagBuilder
override this.GenerateFormCore : Microsoft.AspNetCore.Mvc.Rendering.ViewContext * string * string * obj -> Microsoft.AspNetCore.Mvc.Rendering.TagBuilder
Protected Overridable Function GenerateFormCore (viewContext As ViewContext, action As String, method As String, htmlAttributes As Object) As TagBuilder
매개 변수
- viewContext
- ViewContext
ViewContext 현재 scope 대한 instance.
- action
- String
양식 데이터를 제출해야 하는 URL입니다.
- method
- String
GET 또는 POST인 폼을 처리하기 위한 HTTP 메서드입니다.
- htmlAttributes
- Object
Object 요소에 대한 HTML 특성을 포함하는 입니다. IDictionary<TKey,TValue> 또는 HTML 특성을 포함하는 instance.
반환
TagBuilder /form> 요소에 <대한 instance.