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