namespace DPumpHydr.WinFrmUI.WenSkin.Json
{
///
/// Specifies reference loop handling options for the .
///
public enum ReferenceLoopHandling
{
///
/// Throw a when a loop is encountered.
///
Error,
///
/// Ignore loop references and do not serialize.
///
Ignore,
///
/// Serialize loop references.
///
Serialize
}
}