次の方法で共有


FormMappingContext.GetAllErrors メソッド

定義

オーバーロード

GetAllErrors()

モデルのすべてのエラーを取得します。

GetAllErrors(String)

モデルのすべてのエラーを取得します。

GetAllErrors()

ソース:
FormMappingContext.cs
ソース:
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)

ソース:
FormMappingContext.cs
ソース:
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

このコンテキストのフォームのフォーム名。

戻り値

モデルに関連付けられているエラーの一覧 (存在する場合)。

適用対象