Json.Net在使用我的JsonConverter之前自行转换

时间:2015-08-14 19:52:23

标签: c# json wpf json.net deserialization

在我的WPF代码中,我使用Newtonsoft.Json将json反序列化为我的模型。首先,我收到一个Json字符串(' json'),然后我将其解析为' message'。 (我要反序列化的对象包含在json字符串中的" data"字段中)。

Activity message = JObject.Parse(json)["data"].ToObject<Activity>();

我的Activity类使用多个[JsonProperty]属性来生成其字段。其中一个是名为&#39; ActivityType&#39;的枚举。

[JsonProperty("type")]
[JsonConverter(typeof(ActivityTypeConverter))]
public ActivityType Type { get; set; }

public enum ActivityType {
    EmailOpen,
    LinkClick,
    Salesforce,
    Unsupported
};

public class ActivityTypeConverter : JsonConverter {

    public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
    {
        var rawString = existingValue.ToString().ToLower();
        if (rawString.Contains("click"))
            return ActivityType.LinkClick;
        else if (rawString.Contains("salesforce"))
            return ActivityType.Salesforce;
        else if (rawString.Contains("email_open"))
            return ActivityType.EmailOpen;
        else
        {
            Console.WriteLine("unsupported " + rawString);
            return ActivityType.Unsupported;
        }
    }

    public override bool CanConvert(Type objectType)
    {
        return !objectType.Equals(typeof(ActivityType));
    }

    public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
    {
        throw new NotImplementedException();
    }
}

奇怪而令人沮丧的是,我知道的json对象有&#34;类型&#34;:&#34; email_open&#34;正在反序列化为ActivityType.Unsupported,即使我的转换器应该将它们反序列化为EmailOpen。​​

调试显示了问题所在: json字段&#34;类型&#34;自动反序列化&#34; email_open&#34;如EmailOpen 然后它将通过我的转换器发送。 (它因为我的条件检查下划线而破坏了,而EmailOpen.ToString()却没有。)

<小时/> 所以我的问题是:为什么没有我的转换器进行转换,如何阻止它?我只想让它只使用我的转换器

1 个答案:

答案 0 :(得分:2)

我认为您的转换器正在被调用 - 它只是不起作用。问题是,您使用JsonReader reader中的值,而不是从existingValue中读取新值。但是第二个值是被反序列化的类中预先存在的属性值,正在读取的值。

您需要按照Json.NET StringEnumConverter的方式从阅读器加载值。这是一个版本,它通过子类化StringEnumConverter并将从文件读取的值传递给基类进行进一步处理来处理枚举的标准值:

public class ActivityTypeConverter : StringEnumConverter
{
    public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
    {
        bool isNullable = (Nullable.GetUnderlyingType(objectType) != null);
        Type type = (Nullable.GetUnderlyingType(objectType) ?? objectType);

        if (reader.TokenType == JsonToken.Null)
        {
            if (!isNullable)
                throw new JsonSerializationException();
            return null;
        }

        var token = JToken.Load(reader);
        if (token.Type == JTokenType.String)
        {
            var rawString = ((string)token).ToLower();
            if (rawString.Contains("click"))
                return ActivityType.LinkClick;
            else if (rawString.Contains("salesforce"))
                return ActivityType.Salesforce;
            else if (rawString.Contains("email_open"))
                return ActivityType.EmailOpen;
        }

        using (var subReader = token.CreateReader())
        {
            while (subReader.TokenType == JsonToken.None)
                subReader.Read();
            try
            {
                return base.ReadJson(subReader, objectType, existingValue, serializer); // Use base class to convert
            }
            catch (Exception ex)
            {
                return ActivityType.Unsupported;
            }
        }
    }

    public override bool CanConvert(Type objectType)
    {
        return objectType == typeof(ActivityType);
    }
}