ASP.NET ActionResult
last modified April 3, 2025
In this article, we explore the ActionResult type in ASP.NET 8. ActionResult is a fundamental return type for controller actions in ASP.NET applications.
ASP.NET is a cross-platform, high-performance framework for building modern web applications. ActionResult provides a flexible way to return HTTP responses.
Basic Definition
ActionResult is a base class in ASP.NET that represents the result of an action method. It encapsulates both the response data and the HTTP status code.
ActionResult provides various derived types for common HTTP responses like OkResult, NotFoundResult, and BadRequestResult. These simplify returning standard HTTP responses.
Using ActionResult makes your API more flexible and maintainable. It allows returning different response types from the same action method when needed.
ASP.NET ActionResult Example
The following example demonstrates various ActionResult return types in a Web API.
var builder = WebApplication.CreateBuilder(args); builder.Services.AddControllers(); var app = builder.Build(); app.MapControllers(); app.Run();
This sets up a basic ASP.NET application with controller support. The
MapControllers
method enables attribute routing for controllers.
using Microsoft.AspNetCore.Mvc; [ApiController] [Route("api/[controller]")] public class BooksController : ControllerBase { private static List<Book> _books = new() { new Book(1, "The Great Gatsby", "F. Scott Fitzgerald"), new Book(2, "1984", "George Orwell"), new Book(3, "To Kill a Mockingbird", "Harper Lee") }; [HttpGet] public ActionResult<IEnumerable<Book>> GetAllBooks() { return Ok(_books); } [HttpGet("{id}")] public ActionResult<Book> GetBookById(int id) { var book = _books.FirstOrDefault(b => b.Id == id); if (book == null) return NotFound(); return Ok(book); } [HttpPost] public ActionResult<Book> AddBook([FromBody] Book newBook) { if (newBook == null) return BadRequest(); newBook.Id = _books.Max(b => b.Id) + 1; _books.Add(newBook); return CreatedAtAction(nameof(GetBookById), new { id = newBook.Id }, newBook); } [HttpPut("{id}")] public ActionResult UpdateBook(int id, [FromBody] Book updatedBook) { var existingBook = _books.FirstOrDefault(b => b.Id == id); if (existingBook == null) return NotFound(); existingBook.Title = updatedBook.Title; existingBook.Author = updatedBook.Author; return NoContent(); } [HttpDelete("{id}")] public ActionResult DeleteBook(int id) { var book = _books.FirstOrDefault(b => b.Id == id); if (book == null) return NotFound(); _books.Remove(book); return NoContent(); } } public record Book(int Id, string Title, string Author);
This controller demonstrates various ActionResult return types for a RESTful API.
The ActionResult<T>
generic type provides better Swagger
documentation and type safety.
The GetAllBooks
method returns an OkObjectResult
with
the book list. GetBookById
returns either the book or a 404 status.
The AddBook
method shows how to return a 201 Created response with
location header. UpdateBook
and DeleteBook
return 204
NoContent for successful operations.
This example covers all CRUD operations with appropriate HTTP status codes and response types. It demonstrates the flexibility of ActionResult in handling different response scenarios.
Source
Microsoft ASP.NET Action Return Types Documentation
In this article, we have explored the ActionResult type in ASP.NET 8. This powerful feature provides a flexible way to return HTTP responses from actions.
Author
List all ASP.NET tutorials.