ObjectCreationHandling
Specifies how object creation is handled by the  JsonSerializer.
            
                namespace Newtonsoft.Json
{
    public enum ObjectCreationHandling
    {
        Auto,
        Reuse,
        Replace
    }
}