EmbeddedMailObjectsCollection.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / UI / WebControls / EmbeddedMailObjectsCollection.cs / 1 / EmbeddedMailObjectsCollection.cs

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

namespace System.Web.UI.WebControls { 
 
    using System.Security.Permissions;
    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))] 
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    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.
//------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Web.UI.WebControls { 
 
    using System.Security.Permissions;
    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))] 
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    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