XmlArrayAttribute Class
Assembly: System.Xml (in system.xml.dll)
'Declaration <AttributeUsageAttribute(AttributeTargets.Property Or AttributeTargets.Field Or AttributeTargets.Parameter Or AttributeTargets.ReturnValue, AllowMultiple:=False)> _ Public Class XmlArrayAttribute Inherits Attribute 'Usage Dim instance As XmlArrayAttribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Property|AttributeTargets.Field|AttributeTargets.Parameter|AttributeTargets.ReturnValue, AllowMultiple=false) */ public class XmlArrayAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Property|AttributeTargets.Field|AttributeTargets.Parameter|AttributeTargets.ReturnValue, AllowMultiple=false) public class XmlArrayAttribute extends Attribute
The XmlArrayAttribute belongs to a family of attributes that controls how the XmlSerializer serializes or deserializes an object. For a complete list of similar attributes, see Attributes That Control XML Serialization.
You can apply the XmlArrayAttribute to a public field or read/write property that returns an array of objects. You can also apply it to collections and fields that return an ArrayList or any field that returns an object that implements the IEnumerable interface.
When you apply the XmlArrayAttribute to a class member, the Serialize method of the XmlSerializer class generates a nested sequence of XML elements from that member. An XML schema document (an .xsd file), indicates such an array as a complexType. For example, if the class to be serialized represents a purchase order, you can generate an array of purchased items by applying the XmlArrayAttribute to a public field that returns an array of objects that represent order items.
If no attributes are applied to a public field or property that returns an array of complex or primitive type objects, the XmlSerializer generates a nested sequence of XML elements by default. To more precisely control what XML elements are generated, apply an XmlArrayItemAttribute and an XmlArrayAttribute to the field or property. For example, by default, the name of the generated XML element is derived from the member identifier You can change the name of the generated XML element by setting the ElementName property.
If you serialize an array that contains items of a specific type and all the classes derived from that type, you must use the XmlArrayItemAttribute to declare each of the types.
Note |
|---|
| You can use XmlArray in your code instead of the longer XmlArrayAttribute. |
For more information about using attributes, see Extending Metadata Using Attributes.
The following example serializes a class instance into an XML document that contains several object arrays. The XmlArrayAttribute is applied to the members that become XML element arrays.
Option Explicit Option Strict Imports System Imports System.IO Imports System.Xml.Serialization Imports System.Xml Public Class Run Public Shared Sub Main() Dim test As New Run() test.SerializeDocument("books.xml") End Sub Public Sub SerializeDocument(ByVal filename As String) ' Creates a new XmlSerializer. Dim s As New XmlSerializer(GetType(MyRootClass)) ' Writing the file requires a StreamWriter. Dim myWriter As New StreamWriter(filename) ' Creates an instance of the class to serialize. Dim myRootClass As New MyRootClass() ' Uses a basic method of creating an XML array: Create and ' populate a string array, and assign it to the ' MyStringArray property. Dim myString() As String = {"Hello", "world", "!"} myRootClass.MyStringArray = myString ' Uses a more advanced method of creating an array: ' create instances of the Item and BookItem, where BookItem ' is derived from Item. Dim item1 As New Item() Dim item2 As New BookItem() ' Sets the objects' properties. With item1 .ItemName = "Widget1" .ItemCode = "w1" .ItemPrice = 231 .ItemQuantity = 3 End With With item2 .ItemCode = "w2" .ItemPrice = 123 .ItemQuantity = 7 .ISBN = "34982333" .Title = "Book of Widgets" .Author = "John Smith" End With ' Fills the array with the items. Dim myItems() As Item = {item1, item2} ' Set class's Items property to the array. myRootClass.Items = myItems ' Serializes the class, writes it to disk, and closes ' the TextWriter. s.Serialize(myWriter, myRootClass) myWriter.Close() End Sub End Class ' This is the class that will be serialized. Public Class MyRootClass Private myItems() As Item ' Here is a simple way to serialize the array as XML. Using the ' XmlArrayAttribute, assign an element name and namespace. The ' IsNullable property determines whether the element will be ' generated if the field is set to a null value. If set to true, ' the default, setting it to a null value will cause the XML ' xsi:null attribute to be generated. <XmlArray(ElementName := "MyStrings", _ Namespace := "http://www.cpandl.com", _ IsNullable := True)> _ Public MyStringArray() As String ' Here is a more complex example of applying an ' XmlArrayAttribute. The Items property can contain both Item ' and BookItem objects. Use the XmlArrayItemAttribute to specify ' that both types can be inserted into the array. <XmlArrayItem(ElementName := "Item", _ IsNullable := True, _ Type := GetType(Item), _ Namespace := "http://www.cpandl.com"), _ XmlArrayItem(ElementName := "BookItem", _ IsNullable := True, _ Type := GetType(BookItem), _ Namespace := "http://www.cohowinery.com"), _ XmlArray()> _ Public Property Items As Item() Get Return myItems End Get Set myItems = value End Set End Property End Class Public Class Item <XmlElement(ElementName := "OrderItem")> _ Public ItemName As String Public ItemCode As String Public ItemPrice As Decimal Public ItemQuantity As Integer End Class Public Class BookItem Inherits Item Public Title As String Public Author As String Public ISBN As String End Class
import System.*;
import System.IO.*;
import System.Xml.Serialization.*;
import System.Xml.*;
public class Run
{
public static void main(String[] args)
{
Run test = new Run();
test.SerializeDocument("books.xml");
} //main
public void SerializeDocument(String fileName)
{
// Creates a new XmlSerializer.
XmlSerializer s = new XmlSerializer(MyRootClass.class.ToType());
// Writing the file requires a StreamWriter.
TextWriter myWriter = new StreamWriter(fileName);
// Creates an instance of the class to serialize.
MyRootClass myRootClass = new MyRootClass();
/* Uses a basic method of creating an XML array: Create and
populate a string array, and assign it to the
MyStringArray property.
*/
String myString[] = { "Hello", "world", "!" };
myRootClass.myStringArray = myString;
/* Uses a more advanced method of creating an array:
create instances of the Item and BookItem, where BookItem
is derived from Item.
*/
Item item1 = new Item();
BookItem item2 = new BookItem();
// Sets the objects' properties.
item1.itemName = "Widget1";
item1.itemCode = "w1";
item1.itemPrice = Convert.ToDecimal(231);
item1.itemQuantity = 3;
item2.itemCode = "w2";
item2.itemPrice = Convert.ToDecimal(123);
item2.itemQuantity = 7;
item2.isbn = "34982333";
item2.title = "Book of Widgets";
item2.author = "John Smith";
// Fills the array with the items.
Item myItems[] = { item1, item2 };
// Sets the class's Items property to the array.
myRootClass.set_Items(myItems);
/* Serializes the class, writes it to disk, and closes
the TextWriter.
*/
s.Serialize(myWriter, myRootClass);
myWriter.Close();
} //SerializeDocument
} //Run
// This is the class that will be serialized.
public class MyRootClass
{
private Item items[];
/* Here is a simple way to serialize the array as XML. Using the
XmlArrayAttribute, assign an element name and namespace. The
IsNullable property determines whether the element will be
generated if the field is set to a null value. If set to true,
the default, setting it to a null value will cause the XML
xsi:null attribute to be generated.
*/
/** @attribute XmlArray(ElementName = "MyStrings",
Namespace = "http://www.cpandl.com", IsNullable = true)
*/
public String myStringArray[];
/* Here is a more complex example of applying an
XmlArrayAttribute. The Items property can contain both Item
and BookItem objects. Use the XmlArrayItemAttribute to specify
that both types can be inserted into the array.
*/
/** @attribute XmlArrayItem(ElementName = "Item", IsNullable = true,
Type = Item.class, Namespace = "http://www.cpandl.com")
@attribute XmlArrayItem(ElementName = "BookItem", IsNullable = true,
Type = BookItem.class, Namespace = "http://www.cohowinery.com")
*/
/** @attribute XmlArray()
*/
/** @property
*/
public Item[] get_Items()
{
return items;
} //get_Items
/** @property
*/
public void set_Items(Item[] value)
{
items = value;
} //set_Items
} //MyRootClass
public class Item
{
/** @attribute XmlElement(ElementName = "OrderItem")
*/
public String itemName;
public String itemCode;
public System.Decimal itemPrice;
public int itemQuantity;
} //Item
public class BookItem extends Item
{
public String title;
public String author;
public String isbn;
} //BookItem
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Reference
XmlArrayAttribute MembersSystem.Xml.Serialization Namespace
XmlArray
XmlArrayItemAttribute
XmlAttributeOverrides
XmlAttributes
XmlAttributes
Other Resources
Introducing XML SerializationHow to: Specify an Alternate Element Name for an XML Stream
Controlling XML Serialization Using Attributes
Examples of XML Serialization
XML Schema Definition Tool (Xsd.exe)
Note