xml 序列化和继承类型

use*_*346 0 c# serialization xmlinclude xmlserializer inherited

我收到错误“{”类型 Device1 不是预期的。使用 XmlInclude 或 SoapInclude 属性指定静态未知的类型。"}"

目前我有:

public abstract class Device
{
   ..
} 

public class Device1 : Device
{ ... }

[Serializable()]
public class DeviceCollection : CollectionBase
{ ... }

[XmlRoot(ElementName = "Devices")]
public class XMLDevicesContainer
{
    private DeviceCollection _deviceElement = new DeviceCollection();

    /// <summary>Devices device collection xml element.</summary>
    [XmlArrayItem("Device", typeof(Device))]
    [XmlArray("Devices")]
    public DeviceCollection Devices
    {
        get
        {
            return _deviceElement;
        }
        set
        {
            _deviceElement = value;
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

我正在做:

        XMLDevicesContainer devices = new XMLDevicesContainer();
        Device device = new Device1();

        device.DeviceName = "XXX";
        device.Password = "Password";

        devices.Devices.Add(device);
        Serializer.SaveAs<XMLDevicesContainer>(devices, @"c:\Devices.xml", new Type[] { typeof(Device1) });
Run Code Online (Sandbox Code Playgroud)

序列化器的作用是:

   public static void Serialize<T>(T obj, XmlWriter writer, Type[] extraTypes)
    {
        XmlSerializer xs = new XmlSerializer(typeof(T), extraTypes);
        xs.Serialize(writer, obj);
    }
Run Code Online (Sandbox Code Playgroud)

我落在序列化器方法 (xs.Serialize) 的最后一行上,出现错误:“{”类型为 Device1 不是预期的。使用 XmlInclude 或 SoapInclude 属性指定静态未知的类型。"}"

我尝试在 Device 类上编写 XmlInclude 。没有帮助。如果我改变线路

    [XmlArrayItem("Device", typeof(Device))] 
Run Code Online (Sandbox Code Playgroud)

成为

     [XmlArrayItem("Device", typeof(Device1))]
Run Code Online (Sandbox Code Playgroud)

然后它就可以了,但我想编写多种设备类型的数组。

Lan*_*nce 5

您必须为希望在 XMLDevicesContainer 类上可用的每个子类添加 XmlIncludeAttribute。

[XmlRoot(ElementName = "Devices")]
[XMLInclude(typeof(Device1))]
[XMLInclude(typeof(Device2))]
public class XMLDevicesContainer
{
:
}
Run Code Online (Sandbox Code Playgroud)