---
title: "What are Actions in MVC?"  
description: "What are Actions in MVC?"  
author: "Hemant Patel"  
published: 2018-03-16  
updated: 2020-09-21  
canonical: https://www.mindstick.com/interview/23354/what-are-actions-in-mvc  
category: "c#"  
tags: ["mvc"]  
reading_time: 1 minute  

---

# What are Actions in MVC?

In MVC Actions are the methods in Controller class. It's responsible for returning the JSON data or view. It will mainly have "ActionResult" return type and it will be invoked by "InvokeAction()" method called by the controller.

## Answers

### Answer by Hemant Patel

In MVC Actions are the methods in Controller class. It's responsible for returning the JSON data or view. It will mainly have "ActionResult" return type and it will be invoked by "InvokeAction()" method called by the controller.


---

Original Source: https://www.mindstick.com/interview/23354/what-are-actions-in-mvc

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
