Table of Contents

Enum ObjectCreationHandling

Namespace
Newtonsoft.Json
Assembly
Newtonsoft.Json.dll

Specifies how object creation is handled by the JsonSerializer.

public enum ObjectCreationHandling

Fields

Auto = 0

Reuse existing objects, create new objects when needed.

Replace = 2

Always create new objects.

Reuse = 1

Only reuse existing objects.