Base interface for classes that can serialize their state to JSON values.
interface
|
IJsonizable
|
base of
|
Camera
|
||
IWidget
|
Restores the object state from the given JSON value.
method
|
JsonDeserialize
(JsonValue value)
|
||
params
|
value
|
[not-null]
|
The input JSON value. |
Remarks:
Implementations of this method must be able to consume malformed JSON values, without corrupting the object state.
Serializes the object state to an JSON value.
method
|
JsonSerialize
(JsonValue value)
|
||
params
|
value
|
[not-null]
|
The output JSON value. |