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

20 lines
521 B
C#
Raw Normal View History

2021-03-31 11:22:02 +08:00
namespace LC.Newtonsoft.Json.Linq
{
/// <summary>
/// Specifies how JSON arrays are merged together.
/// </summary>
public enum MergeArrayHandling
{
/// <summary>Concatenate arrays.</summary>
Concat = 0,
/// <summary>Union arrays, skipping items that already exist.</summary>
Union = 1,
/// <summary>Replace all array items.</summary>
Replace = 2,
/// <summary>Merge array items together, matched by index.</summary>
Merge = 3
}
}