About 50 results
Open links in new tab
  1. Serialization - .NET | Microsoft Learn

    Oct 25, 2023 · This article provides information about .NET serialization technologies, including binary serialization, XML and SOAP serialization, and JSON serialization.

  2. Serialization - Visual Basic | Microsoft Learn

    Dec 21, 2022 · Serialization is the process of converting an object into a stream of bytes in order to store the object or transmit it to memory, a database, or a file. Its main purpose is to save the state of an …

  3. Details of XML serialization - .NET | Microsoft Learn

    Serialization converts an object into a form that can be transported. This article provides an overview of XML serialization and the XmlSerializer class.

  4. Custom serialization and deserialization contracts - .NET

    Jun 16, 2023 · The following list shows just some examples of the types of customizations you can make to serialization and deserialization: Serialize private fields and properties. Support multiple names for …

  5. Serialization: Making a Serializable Class | Microsoft Learn

    Aug 3, 2021 · The MFC serialization code checks the schema number when reading objects into memory. If the schema number of the object on disk does not match the schema number of the class …

  6. Serialization in MFC | Microsoft Learn

    Feb 25, 2026 · Serialization is ideal for situations where it is desired to maintain the state of structured data (such as C++ classes or structures) during or after execution of a program. Using the …

  7. How to write custom converters for JSON serialization - .NET

    Learn how to create custom converters for the JSON serialization classes that are provided in the System.Text.Json namespace.

  8. Serialization - Framework Design Guidelines | Microsoft Learn

    Oct 22, 2008 · Serialization is the process of converting an object into a format that can be readily persisted or transported. For example, you can serialize an object, transport it over the internet using …

  9. Serialization and Deserialization - WCF | Microsoft Learn

    Apr 5, 2023 · Learn about the WCF serialization engine, which translates between .NET Framework objects and XML, in both directions.

  10. How to serialize JSON in C# - .NET | Microsoft Learn

    This article shows how to use the System.Text.Json namespace to serialize to JavaScript Object Notation (JSON). If you're porting existing code from Newtonsoft.Json, see How to migrate to …