FormMappingContext.GetAllErrors 方法

定义

重载

GetAllErrors()

检索模型的所有错误。

GetAllErrors(String)

检索模型的所有错误。

GetAllErrors()

Source:
FormMappingContext.cs
Source:
FormMappingContext.cs

检索模型的所有错误。

public System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Components.Forms.Mapping.FormMappingError> GetAllErrors ();
member this.GetAllErrors : unit -> seq<Microsoft.AspNetCore.Components.Forms.Mapping.FormMappingError>
Public Function GetAllErrors () As IEnumerable(Of FormMappingError)

返回

与模型关联的错误列表(如果有)。

适用于

GetAllErrors(String)

Source:
FormMappingContext.cs
Source:
FormMappingContext.cs

检索模型的所有错误。

public System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Components.Forms.Mapping.FormMappingError> GetAllErrors (string formName);
member this.GetAllErrors : string -> seq<Microsoft.AspNetCore.Components.Forms.Mapping.FormMappingError>
Public Function GetAllErrors (formName As String) As IEnumerable(Of FormMappingError)

参数

formName
String

在此上下文下窗体的窗体名称。

返回

与模型关联的错误列表(如果有)。

适用于