System.Xml.Serialization.XmlArrayAttribute
namespace System.Xml.Serialization
{
public class XmlArrayAttribute : Attribute
{
public string ElementName { get; set; }
public XmlSchemaForm Form { get; set; }
public bool IsNullable { get; set; }
public string Namespace { get; set; }
public int Order { get; set; }
public XmlArrayAttribute();
public XmlArrayAttribute(string elementName);
}
}