You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
484 B
21 lines
484 B
using System;
|
|
|
|
namespace Newtonsoft.Json.Linq
|
|
{
|
|
/// <summary>
|
|
/// Specifies how null value properties are merged.
|
|
/// </summary>
|
|
[Flags]
|
|
internal 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
|
|
}
|
|
}
|
|
|