using System; namespace LC.Newtonsoft.Json.Linq { /// /// Specifies how null value properties are merged. /// [Flags] public 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 } }