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