Deserialization

Return to Glossary

Deserialization is the reverse of the Serialization process, taking data structured from some format, and rebuilding it into an object. A popular data formats for serializing data in ASCII is JSON or XML. The deserialization must be able to understand the serialization format.

Source: Deserialization