Enum ReferenceLoopHandling
- Namespace
- Newtonsoft.Json
- Assembly
- Newtonsoft.Json.dll
Specifies reference loop handling options for the JsonSerializer.
public enum ReferenceLoopHandling
Fields
Error = 0Throw a JsonSerializationException when a loop is encountered.
Ignore = 1Ignore loop references and do not serialize.
Serialize = 2Serialize loop references.