Controller.Json Method (Object)
Visual Studio 2010
Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON).
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Parameters
- data
- Type: System.Object
The JavaScript object graph to serialize.
Return Value
Type: System.Web.Mvc.JsonResultThe JSON result object that serializes the specified object to JSON format. The result object that is prepared by this method is written to the response by the MVC framework when the object is executed.
The data parameter must be serializable. The JavaScriptSerializer class is used to serialize the object. The result object that is prepared by this method is written to the response by the MVC framework when the object is executed.
Community Additions
ADD
Show: