EmbeddedMailObjectsCollection.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / EmbeddedMailObjectsCollection.cs / 1305376 / EmbeddedMailObjectsCollection.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Web.UI.WebControls { 
 
    using System.Web.Mail;
    using System.Collections; 
    using System.ComponentModel;
    using System.IO;
    using System.Drawing.Design;
    using System.Web; 

    [Editor("System.Web.UI.Design.WebControls.EmbeddedMailObjectCollectionEditor, " + AssemblyRef.SystemDesign, typeof(UITypeEditor))] 
    public sealed class EmbeddedMailObjectsCollection : CollectionBase { 

        public EmbeddedMailObject this[int index] { 
            get {
                return (EmbeddedMailObject)List[index];
            }
            set { 
                List[index] = value;
            } 
        } 

        public int Add(EmbeddedMailObject value) { 
            return List.Add(value);
        }

        public bool Contains(EmbeddedMailObject value) { 
            return List.Contains(value);
        } 
 
        public void CopyTo(EmbeddedMailObject[] array, int index) {
            List.CopyTo(array, index); 
        }

        public int IndexOf(EmbeddedMailObject value) {
            return List.IndexOf(value); 
        }
 
        public void Insert(int index, EmbeddedMailObject value) { 
            List.Insert(index, value);
        } 

        protected override void OnValidate(object value) {
            base.OnValidate(value);
            if (value == null) { 
                throw new ArgumentNullException("value", SR.GetString(SR.Collection_CantAddNull));
            } 
            if (!(value is EmbeddedMailObject)) { 
                throw new ArgumentException(SR.GetString(SR.Collection_InvalidType, "EmbeddedMailObject"), "value");
            } 
        }

        public void Remove(EmbeddedMailObject value) {
            List.Remove(value); 
        }
    } 
} 

// 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