Actionresult vs JSONresult

35,417

Solution 1

ActionResult is an abstract class that an action can return.

The helper methods in Controller (eg, Json(), Content(), View(), ...) return different concrete classes that inherit ActionResult, including JsonResult.

You should declare your action methods as returning ActionResult, so that they have the freedom to return any concrete result class.

Solution 2

Use JsonResult when you want to return raw JSON data to be consumed by a client (javascript on a web page or a mobile client).

Use ActionResult if you want to return a view, redirect etc to be handled by a browser.

Solution 3

ActionResult is an abstract class .JsonResult is subtype of ActionResult. So we can return json content in both types.

Solution 4

According to the MSDN documentation for the ActionResult:

The ActionResult class Encapsulates the result of an action method and is used to perform a framework-level operation on behalf of the action method.

An action method responds to user input by performing work and returning an action result. An action result represents a command that the framework will perform on behalf of the action method. The ActionResult class is the base class for action results

And for JsonResult:

Represents a class that is used to send JSON-formatted content to the response.

Solution 5

JsonResult

This one is a bit more complex, but still not very. It also has hardcoded its ContentType, but what makes it a bit more complex is that it uses a hardcoded JavaScriptSerializer to serialize the JSON data before writing it directly to the response.

this post can be helpful
http://brendan.enrick.com/post/types-of-aspnet-mvc-3-action-results.aspx

Share:
35,417
Sameer More
Author by

Sameer More

Updated on October 15, 2020

Comments

  • Sameer More
    Sameer More over 3 years

    I have 2 questions:

    1. What is the difference between JSONResult and ActionResult?

    2. When to use JSONResult in MVC?

  • Donal Lafferty
    Donal Lafferty over 10 years
  • Rob
    Rob about 8 years
    You should declare your action methods as returning ActionResult, so that they have the freedom to return any concrete result class I disagree. You should be specific as possible about return types, and as general as possible for arguments. JsonResult is the proper type to return in most cases, as other methods may use the method and want to inspect .Data which is only exposed in JsonResult.
  • SLaks
    SLaks about 8 years
    @Rob: You should not call action methods directly. If you need to expose a value to other code, move it to a helper method.
  • Rob
    Rob about 8 years
    @SLaks While I agree in general that it might be worthy of a helper method, it's entirely acceptable for a test to call the method directly. If you define your method as returning JSON, and one day you decide to return XML, you'll catch it early via tests. Or you might think twice about changing an API which used to always return JSON. It's a bit of a code smell to return either View() or Json() on the same controller method. Return types should always be specific, whether or not they should be called directly.