HtmlHelper.BeginRouteForm 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. L’itinéraire avec le nom routeName
génère la <valeur d’attribut du action
formulaire>.
public:
virtual Microsoft::AspNetCore::Mvc::Rendering::MvcForm ^ BeginRouteForm(System::String ^ routeName, System::Object ^ routeValues, Microsoft::AspNetCore::Mvc::Rendering::FormMethod method, Nullable<bool> antiforgery, System::Object ^ htmlAttributes);
public Microsoft.AspNetCore.Mvc.Rendering.MvcForm BeginRouteForm (string routeName, object routeValues, Microsoft.AspNetCore.Mvc.Rendering.FormMethod method, bool? antiforgery, object htmlAttributes);
abstract member BeginRouteForm : string * obj * Microsoft.AspNetCore.Mvc.Rendering.FormMethod * Nullable<bool> * obj -> Microsoft.AspNetCore.Mvc.Rendering.MvcForm
override this.BeginRouteForm : string * obj * Microsoft.AspNetCore.Mvc.Rendering.FormMethod * Nullable<bool> * obj -> Microsoft.AspNetCore.Mvc.Rendering.MvcForm
Public Function BeginRouteForm (routeName As String, routeValues As Object, method As FormMethod, antiforgery As Nullable(Of Boolean), htmlAttributes As Object) As MvcForm
Paramètres
- routeName
- String
Nom de l'itinéraire.
- 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.