简体   繁体   English

如何使用 Newtonsoft Json.Net 反序列化接口

[英]How to deserialize interfaces with Newtonsoft Json.Net

I have this class hierarchy:我有这个 class 层次结构:

public class ProxyBotsSnapshotLogEntryDetails : IBotsSnapshotLogEntryDetails
{
    public ICollection<IBotSnapshot> Snapshots { get; set; }
}
public class ProxyBotSnapshot : IBotSnapshot
{
    public string Name { get; set; }
    public ICollection<IBotSnapshotItem> States { get; set; }
}

public class ProxyBotSnapshotItem : IBotSnapshotItem
{
    public int Count { get; set; }
    public IrcBotChannelStateEnum State { get; set; }
}

and their corresponding interfaces及其对应的接口

public interface IBotsSnapshotLogEntryDetails
{
    ICollection<IBotSnapshot> Snapshots { get; set; }
}

public interface IBotSnapshot
{
    string Name { get; set; }
    ICollection<IBotSnapshotItem> States { get; set; }
}

public interface IBotSnapshotItem
{
    int Count { get; set; }
    IrcBotChannelStateEnum State { get; set; }
}

that I would like to deserialize from JSON:我想从 JSON 反序列化:

var test = JsonConvert.DeserializeObject<ProxyBotsSnapshotLogEntryDetails>(entry.DetailsSerialized);

but I get an error saying that Newtonsoft cannot convert interfaces.但我收到一条错误消息,说 Newtonsoft 无法转换接口。

I found this promising article:我发现了这篇很有前途的文章:

https://www.c-sharpcorner.com/UploadFile/20c06b/deserializing-interface-properties-with-json-net/ https://www.c-sharpcorner.com/UploadFile/20c06b/deserializing-interface-properties-with-json-net/

but am not sure how to use the attribute, since in my case, the property is a list of interface.但我不确定如何使用该属性,因为在我的情况下,该属性是一个接口列表。

Got it! 得到它了!

The converter provided in the article works super nicely, I was just missing the syntax to use it on a collection property. 本文中提供的转换器非常好用,我只是缺少在collection属性上使用它的语法。 Here is the code with the converter and the working attributes: 这是带有转换器和工作属性的代码:

// From the article
public class ConcreteConverter<T> : JsonConverter
{
    public override bool CanConvert(Type objectType) => true;

    public override object ReadJson(JsonReader reader,
     Type objectType, object existingValue, JsonSerializer serializer)
    {
        return serializer.Deserialize<T>(reader);
    }

    public override void WriteJson(JsonWriter writer,
        object value, JsonSerializer serializer)
    {
        serializer.Serialize(writer, value);
    }
}

public class ProxyBotsSnapshotLogEntryDetails : IBotsSnapshotLogEntryDetails
{
    [JsonProperty(ItemConverterType = typeof(ConcreteConverter<ProxyBotSnapshot>))]
    public ICollection<IBotSnapshot> Snapshots { get; set; }
}
public class ProxyBotSnapshot : IBotSnapshot
{
    public string Name { get; set; }

    [JsonProperty(ItemConverterType = typeof(ConcreteConverter<ProxyBotSnapshotItem>))]
    public ICollection<IBotSnapshotItem> States { get; set; }
}

public class ProxyBotSnapshotItem : IBotSnapshotItem
{
    public int Count { get; set; }
    public IrcBotChannelStateEnum State { get; set; }
}

Maybe it works if you add the following settings to the Serializer and Deserializer methods:如果您将以下设置添加到 Serializer 和 Deserializer 方法,也许它会起作用:

new JsonSerializerSettings {TypeNameHandling = TypeNameHandling.Auto}

For example:例如:

var test = JsonConvert.DeserializeObject<ProxyBotsSnapshotLogEntryDetails>(entry.DetailsSerialized,
 new JsonSerializerSettings 
{
  TypeNameHandling = TypeNameHandling.Auto
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM