指定xsi中使用的XML字符串的任何方法:type="&”;
本文关键字:type quot 方法 任何 xsi 字符串 XML 指定 | 更新日期: 2023-09-27 18:29:49
我有一个使用XMLSerialiser
序列化为XML的类层次结构。为此,我使用[XmlInclude]
声明所有具体类型。例如
[XmlInclude(typeof(Derived))]
public class Base
{
}
public class Derived : Base
{
}
Derived的一个实例被序列化为:
<Base xsi:type="Derived" />
有没有办法将类型文本更改为类名以外的内容?例如:
<Base xsi:type="Fred" />
我认为您可以按如下方式执行:
[XmlType(TypeName = "Fred")]
public class Derived : Base
{
}
使用XmlType属性:
[XmlInclude(typeof(Derived))]
public class Base
{
}
[XmlType("Fred")]
public class Derived : Base
{
}
这将在使用Base
序列化程序序列化Derived
对象时为您提供所需的xsi:type
。我的测试程序输出:
<Base xsi:type="Fred"/>