Compartir a través de


DefaultHtmlGenerator.GenerateForm Método

Definición

Generar un <elemento de formulario> . Cuando el usuario envía el formulario, la acción con nombre actionName procesará la solicitud.

public:
 virtual 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 virtual 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
override this.GenerateForm : Microsoft.AspNetCore.Mvc.Rendering.ViewContext * string * string * obj * string * obj -> Microsoft.AspNetCore.Mvc.Rendering.TagBuilder
Public Overridable Function GenerateForm (viewContext As ViewContext, actionName As String, controllerName As String, routeValues As Object, method As String, htmlAttributes As Object) As TagBuilder

Parámetros

viewContext
ViewContext

Una ViewContext instancia del ámbito actual.

actionName
String

El nombre del método de acción.

controllerName
String

El nombre del controlador.

routeValues
Object

que Object contiene los parámetros de una ruta. Los parámetros se recuperan mediante reflexión mediante el examen de las propiedades de Object. Normalmente se Object crea mediante la Object sintaxis del inicializador. Como alternativa, una IDictionary<TKey,TValue> instancia que contiene los parámetros de ruta.

method
String

Método HTTP, ya sea GET o POST, que se va a usar para procesar el formulario.

htmlAttributes
Object

que Object contiene los atributos HTML del elemento . Como alternativa, una IDictionary<TKey,TValue> instancia de que contiene los atributos HTML.

Devoluciones

Una TagBuilder instancia del <elemento /form> .

Implementaciones

Se aplica a