namespace CPF.Windows.Json
{
///
/// 发生循环引用时的处理方式枚举
/// Enumeration of processing methods when circular references occur
///
public enum JsonReferenceHandlingEnum
{
///
/// 默认,不处理
/// Default
///
None,
///
/// 将值处理为null
/// Processing the value to null
///
Null,
///
/// 删除该值
/// Delete this value
///
Remove,
///
/// 返回空(Keyvalue =>{},Array=>[])
/// Return empty
///
Empty
}
}