带有C#信封的对象的XML序列化

时间:2011-05-05 09:49:53

标签: c# xml serialization xml-serialization

我需要在C#中将对象序列化为XML。物体应包裹在信封中。为此,我创建了以下Envelope类:

[XmlInclude(typeof(Person))]
public class Envelope
{
    public string SomeValue { get; set; }
    public object WrappedObject { get; set; }
}

我使用以下代码序列化类:

string fileName = ...;
XmlSerializer serializer = new XmlSerializer(typeof(Envelope));
TextWriter textWriter = new StreamWriter(fileName);
try
{
    serializer.Serialize(textWriter, <instance of envelope>);
}
finally
{
    textWriter.Close();
}

当我将Person类型的对象分配给WrappedObject时,我得到以下XML:

<Envelope>
    <SomeValue>...</SomeValue>
    <WrappedObject xsi:type="Person">
        ....
    </WrappedObject>
</Envelope>

问题是,我希望包装对象的标签以我传入的实际类命名。例如,如果我将Person的实例分配给WrappedObject,我我希望XML看起来如下:

<Envelope>
    <SomeValue>...</SomeValue>
    <Person>
        ....
    </Person>
</Envelope>

如果我指定Animal的实例,我想要

<Envelope>
    <SomeValue>...</SomeValue>
    <Animal>
        ....
    </Animal>
</Envelope>

我将如何实现这一目标?

编辑

实际上我已经简化了我的例子......被包裹的对象实际上又被包裹了:

public class Envelope
{
    public string SomeValue { get; set; }
    public Wrapper Wrap { get; set; }
}

[XmlInclude(typeof(Person))]
public class Wrapper
{
    public object WrappedObject { get; set; }
}

我如何使用属性覆盖来处理它?<​​/ p>

1 个答案:

答案 0 :(得分:6)

您需要使用attribute override。我正在大量使用 ,因为我做了很多自定义序列化。

这是一个粗略的未经测试的片段,但应指向正确的方向:

XmlAttributes attributes = new XmlAttributes();
XmlAttributeOverrides xmlAttributeOverrides = new XmlAttributeOverrides();
attributes.XmlElements.Add(new XmlElementAttribute("Person", t));
xmlAttributeOverrides.Add(typeof(Person), "WrappedObject", attributes);
XmlSerializer myserialiser = new XmlSerializer(typeof(Envelope), xmlAttributeOverrides);