RepeaterItemCollection.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 / RepeaterItemCollection.cs / 1 / RepeaterItemCollection.cs

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

/* 
 */ 

namespace System.Web.UI.WebControls { 

    using System;
    using System.Collections;
    using System.Security.Permissions; 

 
    ///  
    /// Encapsulates the collection of  objects within a  control.
    ///  
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    public sealed class RepeaterItemCollection : ICollection {

        private ArrayList items; 

 
        ///  
        ///    Initializes a new instance of
        ///    the  class with the specified items. 
        /// 
        public RepeaterItemCollection(ArrayList items) {
            this.items = items;
        } 

 
        ///  
        ///    Gets the item count of the collection.
        ///  
        public int Count {
            get {
                return items.Count;
            } 
        }
 
 
        /// 
        ///    Gets a value indicating whether the collection is read-only. 
        /// 
        public bool IsReadOnly {
            get {
                return false; 
            }
        } 
 

        ///  
        ///    Gets a value indicating whether access to the collection is synchronized
        ///       (thread-safe).
        /// 
        public bool IsSynchronized { 
            get {
                return false; 
            } 
        }
 

        /// 
        ///    Gets the object that can be used to synchronize access to the collection. In
        ///       this case, it is the collection itself. 
        /// 
        public object SyncRoot { 
            get { 
                return this;
            } 
        }


        ///  
        /// Gets a  referenced by the specified ordinal index value in
        ///    the collection. 
        ///  
        public RepeaterItem this[int index] {
            get { 
                return(RepeaterItem)items[index];
            }
        }
 

 
        ///  
        /// Copies contents from the collection to a specified  with a
        ///    specified starting index. 
        /// 
        public void CopyTo(Array array, int index) {
            for (IEnumerator e = this.GetEnumerator(); e.MoveNext();)
                array.SetValue(e.Current, index++); 
        }
 
 
        /// 
        /// Returns an enumerator of all  controls within the 
        ///    collection.
        /// 
        public IEnumerator GetEnumerator() {
            return items.GetEnumerator(); 
        }
    } 
} 


// 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;
    using System.Collections;
    using System.Security.Permissions; 

 
    ///  
    /// Encapsulates the collection of  objects within a  control.
    ///  
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    public sealed class RepeaterItemCollection : ICollection {

        private ArrayList items; 

 
        ///  
        ///    Initializes a new instance of
        ///    the  class with the specified items. 
        /// 
        public RepeaterItemCollection(ArrayList items) {
            this.items = items;
        } 

 
        ///  
        ///    Gets the item count of the collection.
        ///  
        public int Count {
            get {
                return items.Count;
            } 
        }
 
 
        /// 
        ///    Gets a value indicating whether the collection is read-only. 
        /// 
        public bool IsReadOnly {
            get {
                return false; 
            }
        } 
 

        ///  
        ///    Gets a value indicating whether access to the collection is synchronized
        ///       (thread-safe).
        /// 
        public bool IsSynchronized { 
            get {
                return false; 
            } 
        }
 

        /// 
        ///    Gets the object that can be used to synchronize access to the collection. In
        ///       this case, it is the collection itself. 
        /// 
        public object SyncRoot { 
            get { 
                return this;
            } 
        }


        ///  
        /// Gets a  referenced by the specified ordinal index value in
        ///    the collection. 
        ///  
        public RepeaterItem this[int index] {
            get { 
                return(RepeaterItem)items[index];
            }
        }
 

 
        ///  
        /// Copies contents from the collection to a specified  with a
        ///    specified starting index. 
        /// 
        public void CopyTo(Array array, int index) {
            for (IEnumerator e = this.GetEnumerator(); e.MoveNext();)
                array.SetValue(e.Current, index++); 
        }
 
 
        /// 
        /// Returns an enumerator of all  controls within the 
        ///    collection.
        /// 
        public IEnumerator GetEnumerator() {
            return items.GetEnumerator(); 
        }
    } 
} 


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