Files
4-Heli-DriveAxle-MesProject/Common/00-1Json8.3/Json8.3/Linq/MergeNullValueHandling.cs
2026-05-29 13:50:18 +08:00

22 lines
482 B
C#

using System;
namespace Newtonsoft.Json.Linq
{
/// <summary>
/// Specifies how null value properties are merged.
/// </summary>
[Flags]
public enum MergeNullValueHandling
{
/// <summary>
/// The content's null value properties will be ignored during merging.
/// </summary>
Ignore = 0,
/// <summary>
/// The content's null value properties will be merged.
/// </summary>
Merge = 1
}
}