using System;
namespace CPF.Windows.Json
{
///
/// 对Model进行Json反序列化时全局值格式化器
/// Global value formatter for Json deserialization of Model
///
/// Json字符串中的片段,Fragments in the Json string
/// 该jsonFragment所对应的类型,The type corresponding to the jsonFragment
/// 提供一些选项进行访问,Provides options for access
/// 决定最终是否进行值格式化,Determines whether the value is ultimately formatted
///
public delegate object JsonDeserializeGlobalValueFormatDelegate(string jsonFragment, Type elementType, JsonDeserializeHandler jsonDeserializeHandler, out bool isValueFormat);
}