InvalidModelStateResult Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
An action result that returns a Status400BadRequest response and performs content negotiation on an HttpError based on a ModelStateDictionary.
public class InvalidModelStateResult : Microsoft.AspNetCore.Mvc.ObjectResult
type InvalidModelStateResult = class
inherit ObjectResult
Public Class InvalidModelStateResult
Inherits ObjectResult
- Inheritance
Constructors
InvalidModelStateResult(ModelStateDictionary, Boolean) |
Initializes a new instance of the InvalidModelStateResult class. |
Properties
ContentTypes |
Gets or sets the MediaTypeCollection. (Inherited from ObjectResult) |
DeclaredType |
Gets or sets the declared type. (Inherited from ObjectResult) |
Formatters |
The collection of IOutputFormatter. (Inherited from ObjectResult) |
IncludeErrorDetail |
Gets a value indicating whether the error should include exception messages. |
ModelState |
Gets the model state to include in the error. |
StatusCode |
Gets or sets the HTTP status code. (Inherited from ObjectResult) |
Value |
The object result. (Inherited from ObjectResult) |
Methods
ExecuteResult(ActionContext) |
Executes the result operation of the action method synchronously. This method is called by MVC to process the result of an action method. (Inherited from ActionResult) |
ExecuteResultAsync(ActionContext) |
Executes the result operation of the action method asynchronously. This method is called by MVC to process the result of an action method. |
OnFormatting(ActionContext) |
This method is called before the formatter writes to the output stream. (Inherited from ObjectResult) |