JSON Serializer
JsonSerializer Class
Converts objects to and from javascript object notation strings
Syntax
public static class JsonSerializer
Member Details
Deserialize Generic Method
Converts the given string to an object.
SyntaxType Parameters
T
The type to create.
Parameters
value
The string in json notation.
done
The action to call when the conversion is complete.
Remarks
RequirementsNamespace: Sansar.Utility Assembly: Sansar.Script (in Sansar.Script.dll) Assembly Versions: 1.0.0.0
Deserialize Generic Method
Converts the given string to an object.
SyntaxType Parameters
T
The type to create.
Parameters
value
The string in json notation.
options
Options to control the deserialization.
done
The action to call when the conversion is complete.
Remarks
RequirementsNamespace: Sansar.Utility Assembly: Sansar.Script (in Sansar.Script.dll) Assembly Versions: 1.0.0.0
Serialize Generic Method
Converts the given object to a Json string
SyntaxType Parameters
T
The type of the object to convert. This can usually be inferred.
Parameters
value
The object to be converted
done
The action to call when the conversion is complete.
Remarks
RequirementsNamespace: Sansar.Utility Assembly: Sansar.Script (in Sansar.Script.dll) Assembly Versions: 1.0.0.0
Serialize Generic Method
Converts the given object to a Json string
SyntaxType Parameters
T
The type of the object to convert. This can usually be inferred.
Parameters
value
The object to be converted
options
Options to control the serialization.
done
The action to call when the conversion is complete.
Remarks
RequirementsNamespace: Sansar.Utility Assembly: Sansar.Script (in Sansar.Script.dll) Assembly Versions: 1.0.0.0
Last updated