//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // [....] //------------------------------------------------------------------------------ namespace System.Xml.Serialization { using System; using System.Reflection; using System.Collections; using System.ComponentModel; /// /// /// [To be supplied.] /// public class XmlArrayItemAttributes : CollectionBase { /// /// /// [To be supplied.] /// public XmlArrayItemAttribute this[int index] { get { return (XmlArrayItemAttribute)List[index]; } set { List[index] = value; } } /// /// /// [To be supplied.] /// public int Add(XmlArrayItemAttribute attribute) { return List.Add(attribute); } /// /// /// [To be supplied.] /// public void Insert(int index, XmlArrayItemAttribute attribute) { List.Insert(index, attribute); } /// /// /// [To be supplied.] /// public int IndexOf(XmlArrayItemAttribute attribute) { return List.IndexOf(attribute); } /// /// /// [To be supplied.] /// public bool Contains(XmlArrayItemAttribute attribute) { return List.Contains(attribute); } /// /// /// [To be supplied.] /// public void Remove(XmlArrayItemAttribute attribute) { List.Remove(attribute); } /// /// /// [To be supplied.] /// public void CopyTo(XmlArrayItemAttribute[] array, int index) { List.CopyTo(array, index); } } }