4 references to HttpValidationProblemDetails
Microsoft.AspNetCore.Http.Results.Tests (1)
ProblemResultTests.cs (1)
141var details = new HttpValidationProblemDetails(new Dictionary<string, string[]>
Microsoft.AspNetCore.Mvc.Core (2)
ValidationProblemDetails.cs (2)
29: base(CreateErrorDictionary(modelState)) 78: base(errors)
MinimalSample (1)
Program.cs (1)
88"objectValidation" => Results.Problem(new HttpValidationProblemDetails(errors) { Status = 400, Extensions = { { "traceId", "traceId123" } } }),