Controller::Json Method

 

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)

NameDescription
System_CAPS_protmethodJson(Object^)

Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON).

System_CAPS_protmethodJson(Object^, JsonRequestBehavior)

Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format using the specified JSON request behavior.

System_CAPS_protmethodJson(Object^, String^)

Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format.

System_CAPS_protmethodJson(Object^, String^, Encoding^)

Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format.

System_CAPS_protmethodJson(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.

System_CAPS_protmethodJson(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.

Return to top

Controller::Json Method (Object^)

Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON).

public protected:
JsonResult^ Json(
	Object^ data
)

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.

Return to top

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.

public protected:
JsonResult^ Json(
	Object^ data,
	JsonRequestBehavior 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.

Return to top

Controller::Json Method (Object^, String^)

Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format.

public protected:
JsonResult^ Json(
	Object^ data,
	String^ contentType
)

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.

Return to top

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.

Return to top

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.

Return to top

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.

Return to top
Show: