HtmlHelper.GenerateForm Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Restitue une <balise de début de formulaire> dans la réponse. Lorsque l’utilisateur envoie le formulaire, l’action avec son nom actionName
traite la demande.
protected:
virtual Microsoft::AspNetCore::Mvc::Rendering::MvcForm ^ GenerateForm(System::String ^ actionName, System::String ^ controllerName, System::Object ^ routeValues, Microsoft::AspNetCore::Mvc::Rendering::FormMethod method, Nullable<bool> antiforgery, System::Object ^ htmlAttributes);
protected virtual Microsoft.AspNetCore.Mvc.Rendering.MvcForm GenerateForm (string actionName, string controllerName, object routeValues, Microsoft.AspNetCore.Mvc.Rendering.FormMethod method, bool? antiforgery, object htmlAttributes);
abstract member GenerateForm : string * string * obj * Microsoft.AspNetCore.Mvc.Rendering.FormMethod * Nullable<bool> * obj -> Microsoft.AspNetCore.Mvc.Rendering.MvcForm
override this.GenerateForm : string * string * obj * Microsoft.AspNetCore.Mvc.Rendering.FormMethod * Nullable<bool> * obj -> Microsoft.AspNetCore.Mvc.Rendering.MvcForm
Protected Overridable Function GenerateForm (actionName As String, controllerName As String, routeValues As Object, method As FormMethod, antiforgery As Nullable(Of Boolean), htmlAttributes As Object) As MvcForm
Paramètres
- actionName
- String
Nom de la méthode d’action.
- controllerName
- String
Nom du contrôleur.
- routeValues
- Object
Object qui contient les paramètres d’un itinéraire. Les paramètres sont récupérés par réflexion en examinant les propriétés de .Object Il Object est généralement créé à l’aide de Object la syntaxe d’initialiseur. Vous pouvez également utiliser une IDictionary<TKey,TValue> instance contenant les paramètres de route.
- method
- FormMethod
Méthode HTTP pour le traitement du formulaire, GET ou POST.
Si true
, <les éléments de formulaire> incluent un jeton antiforgery.
Si false
, supprime la génération d’une <entrée> de type « masqué » avec un jeton antiforgery.
Si null
, <les éléments de formulaire> incluent un jeton antiforgery uniquement si method
n’est pas Get.
- htmlAttributes
- Object
Object qui contient les attributs HTML de l’élément . IDictionary<TKey,TValue> Une instance contenant les attributs HTML.
Retours
Une MvcForm instance qui affiche la <balise de fin /form> lorsqu’elle est supprimée.
Remarques
Dans ce contexte, « renders » signifie que la méthode écrit sa sortie à l’aide de Writer.