FormMappingContext.GetAllErrors 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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
在此上下文下窗体的窗体名称。
返回
与模型关联的错误列表(如果有)。