XmlArrayItemAttributes.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / Serialization / XmlArrayItemAttributes.cs / 1 / XmlArrayItemAttributes.cs

                            //------------------------------------------------------------------------------ 
// 
//     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);
        }

    } 

} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK