XmlElementAttributes.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Xml / System / Xml / Serialization / XmlElementAttributes.cs / 1 / XmlElementAttributes.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 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);
        }

    } 

 
 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//     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 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);
        }

    } 

 
 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

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