1 instantiation of ModelErrorCollection
Microsoft.AspNetCore.Mvc.Abstractions (1)
ModelBinding\ModelStateEntry.cs (1)
32
_errors = new
ModelErrorCollection
();
7 references to ModelErrorCollection
Microsoft.AspNetCore.Mvc.Abstractions (3)
ModelBinding\ModelStateEntry.cs (3)
11
private
ModelErrorCollection
? _errors;
24
/// Gets the <see cref="
ModelErrorCollection
"/> for this entry.
26
public
ModelErrorCollection
Errors
Microsoft.AspNetCore.Mvc.Core (3)
ModelBinding\UnsupportedContentTypeFilter.cs (1)
45
var
errors = kvp.Value.Errors;
SerializableError.cs (1)
41
var
errors = keyModelStatePair.Value.Errors;
ValidationProblemDetails.cs (1)
42
var
errors = keyModelStatePair.Value.Errors;
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
DefaultHtmlGenerator.cs (1)
741
var
modelErrors = tryGetModelStateResult ? entry.Errors : null;