IHtmlHelper.ValidationSummary(Boolean, String, Object, String) 方法

定义

返回一个无序列表 (<ul> 元素) 对象中的 ModelStateDictionary 验证消息。

public:
 Microsoft::AspNetCore::Html::IHtmlContent ^ ValidationSummary(bool excludePropertyErrors, System::String ^ message, System::Object ^ htmlAttributes, System::String ^ tag);
public Microsoft.AspNetCore.Html.IHtmlContent ValidationSummary (bool excludePropertyErrors, string message, object htmlAttributes, string tag);
abstract member ValidationSummary : bool * string * obj * string -> Microsoft.AspNetCore.Html.IHtmlContent
Public Function ValidationSummary (excludePropertyErrors As Boolean, message As String, htmlAttributes As Object, tag As String) As IHtmlContent

参数

excludePropertyErrors
Boolean

如果 true为 ,则仅显示模型级错误;否则显示所有错误。

message
String

与验证摘要一起显示的消息。

htmlAttributes
Object

一个 , Object 包含最顶层 (<div>) 元素的 HTML 属性。 或者,一个 IDictionary<TKey,TValue> 包含 HTML 属性的 实例。

tag
String

要在生成的 HTML 中包装 的 message 标记。 它的默认值为 ValidationSummaryMessageElement

返回

<包含包装 元素和 ul> 元素的 tag div> 元素的 <NewIHtmlContent。 如果当前模型有效且禁用客户端验证,则为空 IHtmlContent

适用于