Table of Contents

Enum ReferenceLoopHandling

Namespace
Newtonsoft.Json
Assembly
Newtonsoft.Json.dll

Specifies reference loop handling options for the JsonSerializer.

public enum ReferenceLoopHandling

Fields

Error = 0

Throw a JsonSerializationException when a loop is encountered.

Ignore = 1

Ignore loop references and do not serialize.

Serialize = 2

Serialize loop references.