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.

19 lines
520 B

  1. namespace Newtonsoft.Json.Linq
  2. {
  3. /// <summary>
  4. /// Specifies how JSON arrays are merged together.
  5. /// </summary>
  6. internal enum MergeArrayHandling
  7. {
  8. /// <summary>Concatenate arrays.</summary>
  9. Concat = 0,
  10. /// <summary>Union arrays, skipping items that already exist.</summary>
  11. Union = 1,
  12. /// <summary>Replace all array items.</summary>
  13. Replace = 2,
  14. /// <summary>Merge array items together, matched by index.</summary>
  15. Merge = 3
  16. }
  17. }