Telogis.GeoBase.Serialization Namespace |
The Telogis.GeoBase.Serialization namespace provides classes to support array and object serialization to, and deserialization from, a string.
Class | Description | |
---|---|---|
JSONArray |
An object that represents an array of CLR objects in a format that can be easily serialized
to a string and deserialized from a string. Each value in the array must be one of the
following:
| |
JSONFormatter |
The JSONFormatter allows classes that implement IJSONSerializable
to be converted into strings. The JSONFormatter also allows the strings to be converted back into object form.
| |
JSONObject |
An object that represents a CLR object in a format that can be easily serialized to a
string and deserialized from a string. Each field or property in the CLR object is
represented by a key-value pair. The key is the name of the field or property. Each value
must be one of the following:
| |
LatLonStringConverter | TypeConverter for
LatLon.
|
Interface | Description | |
---|---|---|
IJSONSerializable |
Classes that implement IJSONSerializable can be used
by JSONFormatter to serialize and deserialize the object to and from a string.
|