Class
JsonObject

Describes an object that is serializable to JSON

Definition

Namespace:Telerik.DataSource

Assembly:Telerik.DataSource.dll

Syntax:

cs-api-definition
public abstract class JsonObject

Inheritance: objectJsonObject

Derived Classes: AggregateFunctionFilterDescriptorBaseSortDescriptor

Constructors

JsonObject()

Declaration

cs-api-definition
protected JsonObject()

Methods

Serialize(IDictionary<string, object>)

Serializes the provided dictionary.

Declaration

cs-api-definition
protected abstract void Serialize(IDictionary<string, object> json)

Parameters

json

IDictionary<string, object>

ToJson()

Serializes the object instance to a dictionary through the Serialize method implementation.

Declaration

cs-api-definition
public IDictionary<string, object> ToJson()

Returns

IDictionary<string, object>