Class JsonExtensions
Controller extensions for json serialization using Json
Inheritance
Inherited Members
Namespace: EPiServer.Shell.Web.Mvc
Assembly: EPiServer.Shell.dll
Version: 7.19.2Syntax
public static class JsonExtensions
Methods
JsonData(Controller, Object)
Returns a Json
Declaration
public static JsonDataResult JsonData(this Controller controller, object data)
Parameters
Type | Name | Description |
---|---|---|
System. |
controller | The controller context. |
System. |
data | The object to convert to json. |
Returns
Type | Description |
---|---|
Json |
A Json |
JsonData(Controller, Object, JsonRequestBehavior)
Returns a Json
Declaration
public static JsonDataResult JsonData(this Controller controller, object data, JsonRequestBehavior behavior)
Parameters
Type | Name | Description |
---|---|---|
System. |
controller | The controller context. |
System. |
data | The object to convert to json. |
System. |
behavior | Any specific behavior for the json serialization. |
Returns
Type | Description |
---|---|
Json |
A Json |
JsonData(Controller, Object, JsonRequestBehavior, IObjectSerializerFactory)
Returns a Json
Declaration
public static JsonDataResult JsonData(this Controller controller, object data, JsonRequestBehavior behavior, IObjectSerializerFactory serializerFactory)
Parameters
Type | Name | Description |
---|---|---|
System. |
controller | The controller context. |
System. |
data | The object to convert to json. |
System. |
behavior | Any specific behavior for the json serialization. |
IObject |
serializerFactory | The serializer factory used to get the appropriate serializer. |
Returns
Type | Description |
---|---|
Json |
A Json |
WrappedJsonData(Controller, Object)
Returns a Wrapped
Declaration
public static WrappedJsonDataResults WrappedJsonData(this Controller controller, object data)
Parameters
Type | Name | Description |
---|---|---|
System. |
controller | The controller context. |
System. |
data | The object to convert to json. |
Returns
Type | Description |
---|---|
Wrapped |