In.NET9, the System.Text.Json package has been greatly improved to give developers more powerful and adaptable JSON processing capabilities. Support for JSON schemas, clever application features, and more customization choices for serialization and deserialization procedures are the main focuses of these enhancements.
Other features of.NET9 are covered in my previous writings. For ease of comprehension and explanation, sample source code projects are also connected to the following articles.
Agenda
In this article, we will understand most of the features supported in System.Text.Json Library. Those details are,
- Json Schema Exporter
- Nullable Reference Type Support
- Customizing Serialization Indentation
- JsonSerializerOptions.Web
- JsonObject Property Ordering
- JsonElement DeepEquals Method
- Customizing Enum Member Names
Json Schema Exporter
A notable addition is the JsonSchemaExporter class, which enables the extraction of JSON schema documents from .NET types. This feature facilitates the validation and documentation of JSON data structures, ensuring consistency across applications. The code snippet below helps to get the schema format as output.
Employee class file
The below code helps to get the schema as output.
The output schema defines the structure of the Employee class, specifying property types and nullability, which aids in maintaining data integrity.
Nullable Reference Type Support
To align with C#’s nullable reference type annotations, System.Text.Json now offers the RespectNullableAnnotations option. When enabled, the serializer enforces non-nullable reference types during serialization and deserialization, throwing exceptions if a non-nullable property is assigned a null value.
So, the code below shows a clear example of this property usage and its results.
The output of the aforesaid code is as follows.
Customizing Serialization Indentation
To offer more flexibility in JSON formatting, System.Text.Json introduces options to customize indentation. We can specify the character and size used for indentation, allowing the JSON output to meet specific formatting requirements. This helps to read/beautify the json in an easy and understandable way.
IndentCharacter only supports space and horizontal tab formats only.
JsonSerializerOptions.Web
The introduction of JsonSerializerOptions.Web provides a predefined set of options tailored for web applications. This includes settings like camel-casing of property names and flexible number handling, aligning JSON serialization with common web API practices.
JsonObject Property Ordering
The JsonObject class now allows developers to control the order of properties in JSON objects. This is particularly beneficial when the property order is significant, such as in certain serialization scenarios or when interfacing with systems that are sensitive to property ordering.
JsonElement DeepEquals Method
In .NET 9, the System.Text.Json library introduces the JsonElement.DeepEquals method, enabling deep comparison between two JsonElement instances. This method determines if two JSON elements are structurally and semantically identical.
Prior to .NET 9, developers often relied on external libraries like Newtonsoft.Json’s JToken.DeepEquals for deep JSON comparisons. The inclusion of JsonElement.DeepEquals in System.Text.Json provides a built-in solution, reducing the need for third-party dependencies.
Customizing Enum Member Names
In .NET 9, The System.Text.Json library introduces the JsonStringEnumMemberName attribute, allowing us to customize the JSON representation of individual enum members. This enhancement provides greater flexibility when serializing enums, especially in scenarios where specific naming conventions or formats are required.
To customize the JSON output of an enum member, apply the JsonStringEnumMemberName attribute to the desired enum fields. Ensure that the enum is decorated with the [JsonConverter(typeof(JsonStringEnumConverter))] attribute to enable string-based serialization.
In this example, the ReadyForDev enum member is serialized as “Ready For Dev” in the JSON output, as specified by the JsonStringEnumMemberName attribute.
Benefits of This Enhancement
- Consistency: Aligns JSON output with specific naming conventions required by external systems or APIs.
- Clarity: Provides more descriptive or user-friendly names in the serialized JSON, improving readability.
- Compatibility: Ensures that the JSON output matches expected formats without altering the underlying enum definitions.
Considerations
- Deserialization: When customizing enum member names, ensure that the JSON input during deserialization matches the specified names to avoid errors.
- Flags Attribute: For enums decorated with the [Flags] attribute, the JsonStringEnumConverter correctly handles combined flag values, serializing them as a comma-separated list of names.
Summary
.NET 9 brings several improvements to the System.Text.Json library, making it more powerful, flexible, and performant for JSON serialization and deserialization. The aforesaid discussed source code examples are attached as a JsonFeaturesDemo.zip file in this article.
Best ASP.NET Core 8.0.11 Hosting
The feature and reliability are the most important things when choosing a good ASP.NET Core 8.0.11 hosting. HostForLIFE is the leading provider of Windows hosting and affordable ASP.NET Core , their servers are optimized for PHP web applications such as the latest ASP.NET Core 8.0.11 version. The performance and the uptime of the ASP.NET CoreĀ hosting service are excellent, and the features of the web hosting plan are even greater than what many hosting providers ask you to pay for. At HostForLIFEASP.NET, customers can also experience fast ASP.NET Core hosting. The company invested a lot of money to ensure the best and fastest performance of the datacenters, servers, network and other facilities. Its data centers are equipped with top equipment like cooling system, fire detection, high-speed Internet connection, and so on. That is why HostForLIFEASP.NET guarantees 99.9% uptime for ASP.NET Core . And the engineers do regular maintenance and monitoring works to assure its ASP.NET CoreĀ hosting are security and always up.