Controller.Json Method (Object, JsonRequestBehavior)
Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format using the specified JSON request behavior.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Protected Friend Function Json ( _ data As Object, _ behavior As JsonRequestBehavior _ ) As JsonResult 'Usage Dim data As Object Dim behavior As JsonRequestBehavior Dim returnValue As JsonResult returnValue = Me.Json(data, behavior)
Parameters
- data
- Type: System.Object
The JavaScript object graph to serialize.
- behavior
- Type: System.Web.Mvc.JsonRequestBehavior
The JSON request behavior.
Return Value
Type: System.Web.Mvc.JsonResultThe result object that serializes the specified object to JSON format.
The data in 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 ASP.NET MVC framework when the object is executed.
Show: