1 write to ProblemDetails
Microsoft.AspNetCore.Http.Results (1)
ProblemHttpResult.cs (1)
26ProblemDetails = problemDetails;
8 references to ProblemDetails
Microsoft.AspNetCore.Http.Results (8)
ProblemHttpResult.cs (8)
23/// <param name="problemDetails">The <see cref="ProblemDetails"/> instance to format in the entity body.</param> 27ProblemDetailsDefaults.Apply(ProblemDetails, statusCode: null); 31/// Gets the <see cref="ProblemDetails"/> instance. 35object? IValueHttpResult.Value => ProblemDetails; 37ProblemDetails? IValueHttpResult<ProblemDetails>.Value => ProblemDetails; 47public int StatusCode => ProblemDetails.Status!.Value; 66if (problemDetailsService is null || !await problemDetailsService.TryWriteAsync(new() { HttpContext = httpContext, ProblemDetails = ProblemDetails })) 71value: ProblemDetails,