// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Infrastructure; using Microsoft.AspNetCore.Mvc.ModelBinding; namespace Microsoft.AspNetCore.Mvc { /// /// An that when executed will produce a Bad Request (400) response. /// [DefaultStatusCode(DefaultStatusCode)] public class BadRequestObjectResult : ObjectResult { private const int DefaultStatusCode = StatusCodes.Status400BadRequest; /// /// Creates a new instance. /// /// Contains the errors to be returned to the client. public BadRequestObjectResult([ActionResultObjectValue] object error) : base(error) { StatusCode = DefaultStatusCode; } /// /// Creates a new instance. /// /// containing the validation errors. public BadRequestObjectResult([ActionResultObjectValue] ModelStateDictionary modelState) : base(new SerializableError(modelState)) { if (modelState == null) { throw new ArgumentNullException(nameof(modelState)); } StatusCode = DefaultStatusCode; } } }