
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.
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 …
Serialization in Orleans - .NET | Microsoft Learn
May 29, 2025 · Grain storage serialization: Used to serialize objects to and from storage systems. Most of this article focuses on grain call serialization via the serialization framework included in …
BinaryFormatter migration guide - .NET | Microsoft Learn
Aug 8, 2024 · We list several options below. Keep using BinaryFormatter. If you need to continue using BinaryFormatter in .NET 9, you need to depend on the unsupported …
JSON and XML Serialization in ASP.NET Web API - ASP.NET 4.x
May 11, 2022 · By default, XmlMediaTypeFormatter uses the DataContractSerializer class to perform serialization. If you prefer, you can configure the XmlMediaTypeFormatter to use the …
JSON serialization and deserialization in .NET - overview
Jan 29, 2025 · Serialization is the process of converting the state of an object, that is, the values of its properties, into a form that can be stored or transmitted. The serialized form doesn't …
BinaryFormatter migration guide: Choose a serializer - .NET
Aug 8, 2024 · If a binary serialization format is not a requirement, you can consider using JSON or XML serialization formats. These serializers are included in .NET and are officially supported.
BinaryFormatter Class …
BinaryFormatter serialization is obsolete and should not be used. See https://aka.ms/binaryformatter for more information. Serializes and deserializes an object, or …
XML Serializer Generator tool (Sgen.exe) - .NET | Microsoft Learn
Apr 25, 2024 · The XML Serializer Generator creates an XML serialization assembly for types in a specified assembly. The serialization assembly improves the startup performance of a …
Serialization in MFC | Microsoft Learn
Aug 3, 2021 · This article explains the serialization mechanism provided in the Microsoft Foundation Class Library (MFC) to allow objects to persist between runs of your program.