Files
2026-06-08 10:59:21 +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
}
}