15

使用 XMLRoot/XMLElement 和使用 Serializable() 属性有什么区别?我怎么知道什么时候使用每个?

4

1 回答 1

36

这是一个不太深入的描述,但我认为这是一个很好的起点。

XmlRootAttribute- 用于为将成为被序列化对象图的根元素的类提供模式信息。这只能应用于类、结构、枚举、返回值的接口。

XmlElementAttribute- 为控制如何将它们序列化为子元素的类的属性提供模式信息。该属性只能应用于字段(类变量成员)、属性、参数和返回值。

前两个XmlRootAttributeXmlElementAttributeXmlSerializer 有关。而下一个由运行时格式化程序使用,并且在使用 XmlSerialization 时不适用。

SerializableAtttrible- 用于指示该类型可以由运行时格式化程序(如 SoapFormatter 或 BinaryFormatter)序列化。仅当您需要使用其中一种格式化程序对类型进行序列化时才需要这样做,并且可以将其应用于委托、枚举、结构和类。

这是一个可能有助于澄清上述内容的简单示例。

// This is the root of the address book data graph
// but we want root written out using camel casing
// so we use XmlRoot to instruct the XmlSerializer
// to use the name 'addressBook' when reading/writing
// the XML data
[XmlRoot("addressBook")]
public class AddressBook
{
  // In this case a contact will represent the owner
  // of the address book. So we deciced to instruct
  // the serializer to write the contact details out
  // as <owner>
  [XmlElement("owner")]
  public Contact Owner;

  // Here we apply XmlElement to an array which will
  // instruct the XmlSerializer to read/write the array
  // items as direct child elements of the addressBook
  // element. Each element will be in the form of 
  // <contact ... />
  [XmlElement("contact")]
  public Contact[] Contacts;
}

public class Contact
{
  // Here we instruct the serializer to treat FirstName
  // as an xml element attribute rather than an element.
  // We also provide an alternate name for the attribute.
  [XmlAttribute("firstName")]
  public string FirstName;

  [XmlAttribute("lastName")]
  public string LastName;

  [XmlElement("tel1")]
  public string PhoneNumber;

  [XmlElement("email")]
  public string EmailAddress;
}

鉴于上述情况,使用 XmlSerializer 序列化的 AddressBook 实例将提供以下格式的 XML

<addressBook>
  <owner firstName="Chris" lastName="Taylor">
    <tel1>555-321343</tel1>
    <email>chris@guesswhere.com</email>
  </owner>
  <contact firstName="Natasha" lastName="Taylor">
    <tel1>555-321343</tel1>
    <email>natasha@guesswhere.com</email>
  </contact>
  <contact firstName="Gideon" lastName="Becking">
    <tel1>555-123423</tel1>
    <email>gideon@guesswhere.com</email>
  </contact>
</addressBook>
于 2010-11-20T08:00:07.570 回答