다음을 통해 공유


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

이 컨텍스트에서 양식의 양식 이름입니다.

반환

모델과 연결된 오류 목록(있는 경우)입니다.

적용 대상