Controller::Json Method
Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
| Name | Description | |
|---|---|---|
![]() | Json(Object^) | Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON). |
![]() | Json(Object^, JsonRequestBehavior) | Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format using the specified JSON request behavior. |
![]() | Json(Object^, String^) | Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format. |
![]() | Json(Object^, String^, Encoding^) | Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format. |
![]() | Json(Object^, String^, Encoding^, JsonRequestBehavior) | Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format using the content type, content encoding, and the JSON request behavior. |
![]() | Json(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. |
Controller::Json Method (Object^)
Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON).
Parameters
- data
-
Type:
System::Object^
The JavaScript object graph to serialize.
Return Value
Type: System.Web.Mvc::JsonResult^The 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 ASP.NET MVC framework when the object is executed.
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.
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::JsonResult^The 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.
Controller::Json Method (Object^, String^)
Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format.
Parameters
- data
-
Type:
System::Object^
The JavaScript object graph to serialize.
- contentType
-
Type:
System::String^
The content type (MIME type).
Return Value
Type: System.Web.Mvc::JsonResult^The JSON result object that serializes the specified object to JSON format.
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.
Controller::Json Method (Object^, String^, Encoding^)
Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format.
public protected: virtual JsonResult^ Json( Object^ data, String^ contentType, Encoding^ contentEncoding )
Parameters
- data
-
Type:
System::Object^
The JavaScript object graph to serialize.
- contentType
-
Type:
System::String^
The content type (MIME type).
- contentEncoding
-
Type:
System.Text::Encoding^
The content encoding.
Return Value
Type: System.Web.Mvc::JsonResult^The JSON result object that serializes the specified object to JSON format.
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.
Controller::Json Method (Object^, String^, Encoding^, JsonRequestBehavior)
Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format using the content type, content encoding, and the JSON request behavior.
public protected: virtual JsonResult^ Json( Object^ data, String^ contentType, Encoding^ contentEncoding, JsonRequestBehavior behavior )
Parameters
- data
-
Type:
System::Object^
The JavaScript object graph to serialize.
- contentType
-
Type:
System::String^
The content type (MIME type).
- contentEncoding
-
Type:
System.Text::Encoding^
The content encoding.
- behavior
-
Type:
System.Web.Mvc::JsonRequestBehavior
The JSON request behavior
Return Value
Type: System.Web.Mvc::JsonResult^The 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.
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.
public protected: JsonResult^ Json( Object^ data, String^ contentType, JsonRequestBehavior 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::JsonResult^The 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.
