Controller::Json Method (Object, String, Encoding)
Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
protected public: 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::JsonResultThe JSON result object that serializes the specified object to JSON format.
Show: