csharp-sdk-upm/Libs/Newtonsoft.Json.AOT/Linq/MergeNullValueHandling.cs

22 lines
485 B
C#
Raw Normal View History

2021-03-31 11:22:02 +08:00
using System;
namespace LC.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
}
}