HtmlHelperValidationExtensions.ValidationSummary 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.
Surcharges
ValidationSummary(IHtmlHelper, Boolean, String, String) |
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary . |
ValidationSummary(IHtmlHelper) |
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary . |
ValidationSummary(IHtmlHelper, Boolean) |
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary . |
ValidationSummary(IHtmlHelper, String) |
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary . |
ValidationSummary(IHtmlHelper, Boolean, String) |
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary . |
ValidationSummary(IHtmlHelper, String, Object) |
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary . |
ValidationSummary(IHtmlHelper, String, String) |
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary . |
ValidationSummary(IHtmlHelper, Boolean, String, Object) |
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary . |
ValidationSummary(IHtmlHelper, String, Object, String) |
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary . |
ValidationSummary(IHtmlHelper, Boolean, String, String)
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary .
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ValidationSummary(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, bool excludePropertyErrors, System::String ^ message, System::String ^ tag);
public static Microsoft.AspNetCore.Html.IHtmlContent ValidationSummary (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, bool excludePropertyErrors, string message, string tag);
static member ValidationSummary : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * bool * string * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ValidationSummary (htmlHelper As IHtmlHelper, excludePropertyErrors As Boolean, message As String, tag As String) As IHtmlContent
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- excludePropertyErrors
- Boolean
Si true
, affichez uniquement les erreurs au niveau du modèle ; sinon, affichez toutes les erreurs.
- message
- String
Message à afficher avec le résumé des validations.
- tag
- String
Balise pour encapsuler le message
dans le code HTML généré. Sa valeur par défaut est ValidationSummaryMessageElement.
Retours
Nouveau IHtmlContent contenant un <élément div> encapsulant l’élément tag
et l’élément <ul> . Vide IHtmlContent si le modèle actuel est valide et si la validation côté client est désactivée.
S’applique à
ValidationSummary(IHtmlHelper)
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary .
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ValidationSummary(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper);
public static Microsoft.AspNetCore.Html.IHtmlContent ValidationSummary (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper);
static member ValidationSummary : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ValidationSummary (htmlHelper As IHtmlHelper) As IHtmlContent
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
Retours
Nouveau IHtmlContent contenant un <élément div> encapsulant l’élément <ul> . Vide IHtmlContent si le modèle actuel est valide et si la validation côté client est désactivée.
S’applique à
ValidationSummary(IHtmlHelper, Boolean)
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary .
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ValidationSummary(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, bool excludePropertyErrors);
public static Microsoft.AspNetCore.Html.IHtmlContent ValidationSummary (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, bool excludePropertyErrors);
static member ValidationSummary : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * bool -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ValidationSummary (htmlHelper As IHtmlHelper, excludePropertyErrors As Boolean) As IHtmlContent
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- excludePropertyErrors
- Boolean
Si true
, affichez uniquement les erreurs au niveau du modèle ; sinon, affichez toutes les erreurs.
Retours
Nouveau IHtmlContent contenant un <élément div> encapsulant l’élément <ul> . Vide IHtmlContent si le modèle actuel est valide et si la validation côté client est désactivée.
S’applique à
ValidationSummary(IHtmlHelper, String)
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary .
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ValidationSummary(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ message);
public static Microsoft.AspNetCore.Html.IHtmlContent ValidationSummary (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string message);
static member ValidationSummary : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ValidationSummary (htmlHelper As IHtmlHelper, message As String) As IHtmlContent
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- message
- String
Message à afficher avec le résumé des validations.
Retours
Nouveau IHtmlContent contenant un <élément div> qui encapsule l’élément ValidationSummaryMessageElement (qui encapsule l’élément message
) et l’élément <ul> . Vide IHtmlContent si le modèle actuel est valide et si la validation côté client est désactivée.
S’applique à
ValidationSummary(IHtmlHelper, Boolean, String)
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary .
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ValidationSummary(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, bool excludePropertyErrors, System::String ^ message);
public static Microsoft.AspNetCore.Html.IHtmlContent ValidationSummary (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, bool excludePropertyErrors, string message);
static member ValidationSummary : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * bool * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ValidationSummary (htmlHelper As IHtmlHelper, excludePropertyErrors As Boolean, message As String) As IHtmlContent
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- excludePropertyErrors
- Boolean
Si true
, affichez uniquement les erreurs au niveau du modèle ; sinon, affichez toutes les erreurs.
- message
- String
Message à afficher avec le résumé des validations.
Retours
Nouveau IHtmlContent contenant un <élément div> encapsulant l’élément ValidationSummaryMessageElement (qui, à son tour, encapsule l’élément message
) et l’élément <ul> . Vide IHtmlContent si le modèle actuel est valide et si la validation côté client est désactivée.
S’applique à
ValidationSummary(IHtmlHelper, String, Object)
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary .
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ValidationSummary(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ message, System::Object ^ htmlAttributes);
public static Microsoft.AspNetCore.Html.IHtmlContent ValidationSummary (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string message, object htmlAttributes);
static member ValidationSummary : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ValidationSummary (htmlHelper As IHtmlHelper, message As String, htmlAttributes As Object) As IHtmlContent
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- message
- String
Message à afficher avec le résumé des validations.
- htmlAttributes
- Object
Object qui contient les attributs HTML de l’élément le plus haut (<div>). IDictionary<TKey,TValue> Une instance contenant les attributs HTML.
Retours
Nouveau IHtmlContent contenant un <élément div> qui encapsule l’élément ValidationSummaryMessageElement (qui encapsule l’élément message
) et l’élément <ul> . Vide IHtmlContent si le modèle actuel est valide et si la validation côté client est désactivée.
S’applique à
ValidationSummary(IHtmlHelper, String, String)
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary .
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ValidationSummary(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ message, System::String ^ tag);
public static Microsoft.AspNetCore.Html.IHtmlContent ValidationSummary (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string message, string tag);
static member ValidationSummary : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ValidationSummary (htmlHelper As IHtmlHelper, message As String, tag As String) As IHtmlContent
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- message
- String
Message à afficher avec le résumé des validations.
- tag
- String
Balise pour encapsuler le message
dans le code HTML généré. Sa valeur par défaut est ValidationSummaryMessageElement.
Retours
Nouveau IHtmlContent contenant un <élément div> encapsulant l’élément tag
et l’élément <ul> . Vide IHtmlContent si le modèle actuel est valide et si la validation côté client est désactivée.
S’applique à
ValidationSummary(IHtmlHelper, Boolean, String, Object)
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary .
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ValidationSummary(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, bool excludePropertyErrors, System::String ^ message, System::Object ^ htmlAttributes);
public static Microsoft.AspNetCore.Html.IHtmlContent ValidationSummary (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, bool excludePropertyErrors, string message, object htmlAttributes);
static member ValidationSummary : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * bool * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ValidationSummary (htmlHelper As IHtmlHelper, excludePropertyErrors As Boolean, message As String, htmlAttributes As Object) As IHtmlContent
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- excludePropertyErrors
- Boolean
Si true
, affichez uniquement les erreurs au niveau du modèle ; sinon, affichez toutes les erreurs.
- message
- String
Message à afficher avec le résumé des validations.
- htmlAttributes
- Object
Object qui contient les attributs HTML de l’élément le plus haut (<div>). IDictionary<TKey,TValue> Une instance contenant les attributs HTML.
Retours
Nouveau IHtmlContent contenant un <élément div> qui encapsule l’élément ValidationSummaryMessageElement (qui encapsule l’élément message
) et l’élément <ul> . Vide IHtmlContent si le modèle actuel est valide et si la validation côté client est désactivée.
S’applique à
ValidationSummary(IHtmlHelper, String, Object, String)
Retourne une liste non triée (<élément ul> ) des messages de validation qui se trouvent dans l’objet ModelStateDictionary .
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ValidationSummary(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ message, System::Object ^ htmlAttributes, System::String ^ tag);
public static Microsoft.AspNetCore.Html.IHtmlContent ValidationSummary (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string message, object htmlAttributes, string tag);
static member ValidationSummary : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * obj * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ValidationSummary (htmlHelper As IHtmlHelper, message As String, htmlAttributes As Object, tag As String) As IHtmlContent
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- message
- String
Message à afficher avec le résumé des validations.
- htmlAttributes
- Object
Object qui contient les attributs HTML de l’élément le plus haut (<div>). IDictionary<TKey,TValue> Une instance contenant les attributs HTML.
- tag
- String
Balise pour encapsuler le message
dans le code HTML généré. Sa valeur par défaut est ValidationSummaryMessageElement.
Retours
Nouveau IHtmlContent contenant un <élément div> encapsulant l’élément tag
et l’élément <ul> . Vide IHtmlContent si le modèle actuel est valide et si la validation côté client est désactivée.