
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 and Deserialization - WCF | Microsoft Learn
Apr 5, 2023 · Windows Communication Foundation (WCF) includes a new serialization engine, the DataContractSerializer. The DataContractSerializer translates between .NET Framework objects and …
JsonStringEnumConverter Class (System.Text.Json.Serialization)
[System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JsonStringEnumConverter cannot be statically analyzed and requires runtime code generation. Applications should use the generic …
Read BinaryFormatter (NRBF) payloads - learn.microsoft.com
Feb 6, 2025 · The NRBF payload consists of serialization records that represent the serialized objects and their metadata. To read the whole payload and get the root object, you need to call the Decode …
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.
How to customize property names and values with System.Text.Json
Update #ClassName: when the property name contains more than one word, change the serialized property name to use underscores between words. Use built-in serialization attributes. Here's a more …
Custom serialization and deserialization contracts - .NET
Jun 16, 2023 · 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 …
Examples of XML Serialization - .NET | Microsoft Learn
These code examples show advanced scenarios, including how to use XML serialization to generate an XML stream that conforms to an XML Schema document.
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 …
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 …