GatewayIPAddressInformationCollection.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 / Net / System / Net / NetworkInformation / GatewayIPAddressInformationCollection.cs / 1 / GatewayIPAddressInformationCollection.cs

                            using System.Collections.Generic; 
using System.Collections.ObjectModel;

namespace System.Net.NetworkInformation{
    public class GatewayIPAddressInformationCollection :ICollection 
    {
        Collection addresses = new Collection(); 
 
        protected internal GatewayIPAddressInformationCollection(){
        } 

        /// 
        public virtual void CopyTo(GatewayIPAddressInformation[] array, int offset) {
            addresses.CopyTo(array,offset); 
        }
 
 
        /// 
        public virtual int Count { 
            get {
                return addresses.Count;
            }
        } 

        public virtual bool IsReadOnly { 
            get { 
                return true;
            } 
        }

        public virtual GatewayIPAddressInformation this[int index]
        { 
            get{
                return (GatewayIPAddressInformation)addresses[index]; 
            } 
        }
 

        /// 
        public virtual void Add(GatewayIPAddressInformation address) {
                throw new NotSupportedException(SR.GetString(SR.net_collection_readonly)); 
        }
 
 

        internal void InternalAdd(GatewayIPAddressInformation address) { 
            addresses.Add(address);
        }

 
        /// 
        public virtual bool Contains(GatewayIPAddressInformation address) { 
            return addresses.Contains(address); 
        }
 

        public virtual IEnumerator GetEnumerator() {
            return (IEnumerator) addresses.GetEnumerator();
        } 

        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { 
 	    return null;	 
        }
 

        /// 
        public virtual bool Remove(GatewayIPAddressInformation address) {
            throw new NotSupportedException(SR.GetString(SR.net_collection_readonly)); 
        }
 
        ///  
        public virtual void Clear() {
            throw new NotSupportedException(SR.GetString(SR.net_collection_readonly)); 
        }
    }
}


                        

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