22 lines
485 B
C#
22 lines
485 B
C#
|
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
|
|||
|
}
|
|||
|
}
|