Controller.Json Method (Object, String, JsonRequestBehavior)
Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format using the specified content type and JSON request behavior.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Protected Friend Function Json ( _ data As Object, _ contentType As String, _ behavior As JsonRequestBehavior _ ) As JsonResult 'Usage Dim data As Object Dim contentType As String Dim behavior As JsonRequestBehavior Dim returnValue As JsonResult returnValue = Me.Json(data, contentType, _ behavior)
Parameters
- data
- Type: System.Object
The JavaScript object graph to serialize.
- contentType
- Type: System.String
The content type (MIME type).
- 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.
Show: