DefaultHtmlGenerator.GenerateValidationSummary Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Generates a <div> element which contains a list of validation errors.
public:
virtual Microsoft::AspNetCore::Mvc::Rendering::TagBuilder ^ GenerateValidationSummary(Microsoft::AspNetCore::Mvc::Rendering::ViewContext ^ viewContext, bool excludePropertyErrors, System::String ^ message, System::String ^ headerTag, System::Object ^ htmlAttributes);
public virtual Microsoft.AspNetCore.Mvc.Rendering.TagBuilder GenerateValidationSummary (Microsoft.AspNetCore.Mvc.Rendering.ViewContext viewContext, bool excludePropertyErrors, string message, string headerTag, object htmlAttributes);
abstract member GenerateValidationSummary : Microsoft.AspNetCore.Mvc.Rendering.ViewContext * bool * string * string * obj -> Microsoft.AspNetCore.Mvc.Rendering.TagBuilder
override this.GenerateValidationSummary : Microsoft.AspNetCore.Mvc.Rendering.ViewContext * bool * string * string * obj -> Microsoft.AspNetCore.Mvc.Rendering.TagBuilder
Public Overridable Function GenerateValidationSummary (viewContext As ViewContext, excludePropertyErrors As Boolean, message As String, headerTag As String, htmlAttributes As Object) As TagBuilder
Parameters
- viewContext
- ViewContext
- excludePropertyErrors
- Boolean
- message
- String
- headerTag
- String
- htmlAttributes
- Object
An Object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the Object. This Object is typically created using Object initializer syntax. Alternatively, an IDictionary<TKey,TValue> instance containing the route parameters.