Class JsonObject
Describes an object that is serializable to JSON
Inheritance
System.Object
JsonObject
Namespace: Telerik.DataSource
Assembly: Telerik.DataSource.dll
Syntax
public abstract class JsonObject : Object
Constructors
JsonObject()
Declaration
protected JsonObject()
Methods
Serialize(IDictionary<String, Object>)
Serializes the provided dictionary.
Declaration
protected abstract void Serialize(IDictionary<string, object> json)
Parameters
System.Collections.Generic.IDictionary<System.String, System.Object>
json
|
ToJson()
Serializes the object instance to a dictionary through the Serialize method implementation.
Declaration
public IDictionary<string, object> ToJson()
Returns
System.Collections.Generic.IDictionary<System.String, System.Object>
|