我正在做一些测试,以检查/了解C#中与.Net类型之间的JSON序列化。
我正在尝试使用DataContractJsonSerializer。

这是我要序列化的样本类型:

[DataContract]
[KnownType(typeof(HashSet<int>))]
public class TestModel
{
    [DataMember]
    public string StreetName { get; private set; }
    [DataMember]
    public int StreetId { get; private set; }
    [DataMember]
    public int NumberOfCars { get; set; }
    [DataMember]
    public IDictionary<string, string> HouseDetails { get; set; }
    [DataMember]
    public IDictionary<int, string> People { get; set; }
    [DataMember]
    public ISet<int> LampPosts { get; set; }

    public TestModel(int StreetId, string StreetName)
    {
        this.StreetName = StreetName;
        this.StreetId = StreetId;

        HouseDetails = new Dictionary<string, string>();
        People = new Dictionary<int, string>();
        LampPosts = new HashSet<int>();
    }

    public void AddHouse(string HouseNumber, string HouseName)
    {
        HouseDetails.Add(HouseNumber, HouseName);
    }

    public void AddPeople(int PersonNumber, string PersonName)
    {
        People.Add(PersonNumber, PersonName);
    }

    public void AddLampPost(int LampPostName)
    {
        LampPosts.Add(LampPostName);
    }
}


然后,当我尝试使用DataContractJsonSerializer序列化此类型的对象时,出现以下错误:

{"'System.Collections.Generic.HashSet`1[System.Int32]' is a collection type and cannot be serialized when assigned to an interface type that does not implement IEnumerable ('System.Collections.Generic.ISet`1[System.Int32]'.)"}


这个消息听起来对我来说不正确。 ISet<T>确实实现了IEnumerable<T>(以及IEnumerable)。
如果在我的TestModel类中,我将替换

public ISet<int> LampPosts { get; set; }




public ICollection<int> LampPosts { get; set; }...


然后一切顺利。

我是JSON新手,所以将不胜感激任何帮助

最佳答案

看起来这是一个known microsoft bug
支持的接口列表在框架中进行了硬编码,并且ISet不是其中之一:

CollectionDataContract.CollectionDataContractCriticalHelper._knownInterfaces = new Type[]
{
  Globals.TypeOfIDictionaryGeneric,
  Globals.TypeOfIDictionary,
  Globals.TypeOfIListGeneric,
  Globals.TypeOfICollectionGeneric,
  Globals.TypeOfIList,
  Globals.TypeOfIEnumerableGeneric,
  Globals.TypeOfICollection,
  Globals.TypeOfIEnumerable
};


是的,错误消息不正确。
因此,DataContractJsonSerializer无法序列化ISet接口,应将其替换为受支持的接口之一,或使用具体的ISet实现。

10-02 01:35