You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Object serialization ia a feature in JSONtext 1.5 and higher, which provides a class-based API to serialize objects from and to JSON. This package adds different strategies to the JSONtext palette.
43
41
44
42
<b>Generic Object Serializer</b>
45
-
Represents LabVIEW Objects as composite JSON Object. Parent classes form a union with their child classes.
43
+
Represents the entire inheritance hierarchy of an object as a single JSON object, optionally with type information for deserialization. Type information is produced by serialization binders, which can be replaced by custom implementations. The default serialization binder uses the fully qualified class name for the type name.
46
44
47
45
<b>JSON Serializable Serializer</b>
48
-
Serializes objects that inherit from JSON Serializer.</Description>
46
+
Only serializes classes that inherit from JSON Serializable that defines methods to serialize to JSON and deserialize from JSON to allow for better control over the serialization process. Objects that don't inherit from JSON Serializable will produce empty JSON objects "{ }".</Description>
0 commit comments