CreatedAtRouteResult 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 ActionResult that returns a Created (201) response with a Location header.
public ref class CreatedAtRouteResult : Microsoft::AspNetCore::Mvc::ObjectResult
public class CreatedAtRouteResult : Microsoft.AspNetCore.Mvc.ObjectResult
[Microsoft.AspNetCore.Mvc.Infrastructure.DefaultStatusCode(201)]
public class CreatedAtRouteResult : Microsoft.AspNetCore.Mvc.ObjectResult
type CreatedAtRouteResult = class
inherit ObjectResult
[<Microsoft.AspNetCore.Mvc.Infrastructure.DefaultStatusCode(201)>]
type CreatedAtRouteResult = class
inherit ObjectResult
Public Class CreatedAtRouteResult
Inherits ObjectResult
- Inheritance
- Attributes
Constructors
CreatedAtRouteResult(Object, Object) |
Initializes a new instance of the CreatedAtRouteResult class with the values provided. |
CreatedAtRouteResult(String, Object, Object) |
Initializes a new instance of the CreatedAtRouteResult class with the values provided. |
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) |
RouteName |
Gets or sets the name of the route to use for generating the URL. |
RouteValues |
Gets or sets the route data to use for generating the URL. |
StatusCode |
Gets or sets the HTTP status code. (Inherited from ObjectResult) |
UrlHelper |
Gets or sets the IUrlHelper used to generate URLs. |
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. (Inherited from ObjectResult) |
OnFormatting(ActionContext) |
This method is called before the formatter writes to the output stream. |