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

  1. using System;
  2. namespace Newtonsoft.Json.Linq
  3. {
  4. /// <summary>
  5. /// Specifies how null value properties are merged.
  6. /// </summary>
  7. [Flags]
  8. internal enum MergeNullValueHandling
  9. {
  10. /// <summary>
  11. /// The content's null value properties will be ignored during merging.
  12. /// </summary>
  13. Ignore = 0,
  14. /// <summary>
  15. /// The content's null value properties will be merged.
  16. /// </summary>
  17. Merge = 1
  18. }
  19. }