ImmutableCollectionsUtils
Helper class for serializing immutable collections.
Note that this is used by all builds, even those that don't support immutable collections, in case the DLL is GACed
https://github.com/JamesNK/Newtonsoft.Json/issues/652
using System;
using System;
namespace Newtonsoft.Json
{
[Flags]
public enum TypeNameHandling
{
None = 0,
Objects = 1,
Arrays = 2,
All = 3,
Auto = 4
}
}