using System;
namespace CPF.Windows.Json
{
///
/// 对Model进行Json序列化时全局值格式化器
/// The global value formatter when the Model is Json serialized
///
/// 传进来的值,The value passed in
/// 值的类型,The type of the value
/// 提供一些选项进行访问,Provides options for access
/// 决定最终是否进行值格式化,Determines whether the value is ultimately formatted
///
public delegate string JsonSerializerGlobalValueFormatDelegate(object value,Type type, JsonSerializerHandler handler, out bool isValueFormat);
}