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.

20 lines
520 B

namespace Newtonsoft.Json.Linq
{
/// <summary>
/// Specifies how JSON arrays are merged together.
/// </summary>
internal 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
}
}