PingbackInfoCollection.cs :  » Bloggers » dasBlog » newtelligence » DasBlog » Runtime » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Bloggers » dasBlog 
dasBlog » newtelligence » DasBlog » Runtime » PingbackInfoCollection.cs

using System;
using System.Collections;
using newtelligence.DasBlog.Runtime;
using System.Collections.Generic;

namespace newtelligence.DasBlog.Runtime{

    #region Class PingbackInfoCollection

    /// <summary>
    /// Implements a strongly typed collection of <see cref="PingbackInfo"/> elements.
    /// </summary>
    /// <remarks><para>
    /// <b>PingbackInfoCollection</b> provides an <see cref="List{T}"/>
    /// that is strongly typed for <see cref="PingbackInfo"/> elements.
    /// </para></remarks>

    [Serializable]
    public class PingbackInfoCollection :
        List<PingbackInfo>, ICloneable
    {
        #region Public Constructors
        #region PingbackInfoCollection()

        /// <overloads>
        /// Initializes a new instance of the <see cref="PingbackInfoCollection"/> class.
        /// </overloads>
        /// <summary>
        /// Initializes a new instance of the <see cref="PingbackInfoCollection"/> class
        /// that is empty and has the default initial capacity.
        /// </summary>
        /// <remarks>Please refer to <see cref="List{T}()"/> for details.</remarks>

        public PingbackInfoCollection()
            : base()
        {
            //empty
        }

        #endregion
        #region PingbackInfoCollection(Int32)

        /// <summary>
        /// Initializes a new instance of the <see cref="PingbackInfoCollection"/> class
        /// that is empty and has the specified initial capacity.
        /// </summary>
        /// <param name="capacity">The number of elements that the new
        /// <see cref="PingbackInfoCollection"/> is initially capable of storing.</param>
        /// <exception cref="ArgumentOutOfRangeException">
        /// <paramref name="capacity"/> is less than zero.</exception>
        /// <remarks>Please refer to <see cref="List{T}(Int32)"/> for details.</remarks>

        public PingbackInfoCollection(int capacity)
            : base(capacity)
        {
            //empty
        }

        #endregion
        #region PingbackInfoCollection(PingbackInfoCollection)

        /// <summary>
        /// Initializes a new instance of the <see cref="PingbackInfoCollection"/> class
        /// that contains elements copied from the specified collection and
        /// that has the same initial capacity as the number of elements copied.
        /// </summary>
        /// <param name="collection">The <see cref="PingbackInfoCollection"/>
        /// whose elements are copied to the new collection.</param>
        /// <exception cref="ArgumentNullException">
        /// <paramref name="collection"/> is a null reference.</exception>
        /// <remarks>Please refer to <see cref="List{T}(IEnumerable{T})"/> for details.</remarks>

        public PingbackInfoCollection(IEnumerable<PingbackInfo> collection)
            : base(collection)
        {
            //empty
        }

        #endregion
        #endregion

        #region Public Properties

        #region IsUnique

        /// <summary>
        /// Gets a value indicating whether the <see cref="PingbackInfoCollection"/> 
        /// ensures that all elements are unique.
        /// </summary>
        /// <value>
        /// <c>true</c> if the <see cref="PingbackInfoCollection"/> ensures that all 
        /// elements are unique; otherwise, <c>false</c>. The default is <c>false</c>.
        /// </value>
        public virtual bool IsUnique
        {
            get { return false; }
        }

        #endregion

        #endregion
        #region Public Methods

        #region Clone

        /// <summary>
        /// Creates a shallow copy of the <see cref="PingbackInfoCollection"/>.
        /// </summary>
        /// <returns>A shallow copy of the <see cref="PingbackInfoCollection"/>.</returns>
        /// <remarks>Please refer to <see cref="ICloneable.Clone"/> for details.</remarks>

        public virtual object Clone()
        {
            PingbackInfoCollection collection = new PingbackInfoCollection(this.ToArray());

            return collection;
        }

        #endregion

        #endregion


        #region Unused classes

        /*
        #region Class ReadOnlyList

        [Serializable]
        private sealed class ReadOnlyList : PingbackInfoCollection
        {
            #region Private Fields

            private PingbackInfoCollection _collection;

            #endregion
            #region Internal Constructors

            internal ReadOnlyList(PingbackInfoCollection collection) :
                base(Tag.Default)
            {
                this._collection = collection;
            }

            #endregion
            #region Protected Properties

            protected override PingbackInfo[] InnerArray
            {
                get { return this._collection.InnerArray; }
            }

            #endregion
            #region Public Properties

            public override int Capacity
            {
                get { return this._collection.Capacity; }
                set
                {
                    throw new NotSupportedException(
                          "Read-only collections cannot be modified.");
                }
            }

            public override int Count
            {
                get { return this._collection.Count; }
            }

            public override bool IsFixedSize
            {
                get { return true; }
            }

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

            public override bool IsSynchronized
            {
                get { return this._collection.IsSynchronized; }
            }

            public override bool IsUnique
            {
                get { return this._collection.IsUnique; }
            }

            public override PingbackInfo this[int index]
            {
                get { return this._collection[index]; }
                set
                {
                    throw new NotSupportedException(
                          "Read-only collections cannot be modified.");
                }
            }

            public override object SyncRoot
            {
                get { return this._collection.SyncRoot; }
            }

            #endregion
            #region Public Methods

            public override void Add(PingbackInfo value)
            {
                throw new NotSupportedException(
                    "Read-only collections cannot be modified.");
            }

            public override void AddRange(PingbackInfoCollection collection)
            {
                throw new NotSupportedException(
                    "Read-only collections cannot be modified.");
            }

            public override void AddRange(PingbackInfo[] array)
            {
                throw new NotSupportedException(
                    "Read-only collections cannot be modified.");
            }

            public override int BinarySearch(PingbackInfo value)
            {
                return this._collection.BinarySearch(value);
            }

            public override void Clear()
            {
                throw new NotSupportedException(
                    "Read-only collections cannot be modified.");
            }

            public override object Clone()
            {
                return new ReadOnlyList((PingbackInfoCollection)this._collection.Clone());
            }

            public override void CopyTo(PingbackInfo[] array)
            {
                this._collection.CopyTo(array);
            }

            public override void CopyTo(PingbackInfo[] array, int arrayIndex)
            {
                this._collection.CopyTo(array, arrayIndex);
            }

            public override IEnumerator<PingbackInfo> GetEnumerator()
            {
                return this._collection.GetEnumerator();
            }

            public override int IndexOf(PingbackInfo value)
            {
                return this._collection.IndexOf(value);
            }

            public override void Insert(int index, PingbackInfo value)
            {
                throw new NotSupportedException(
                    "Read-only collections cannot be modified.");
            }

            public override bool Remove(PingbackInfo value)
            {
                throw new NotSupportedException(
                    "Read-only collections cannot be modified.");
            }

            public override void RemoveAt(int index)
            {
                throw new NotSupportedException(
                    "Read-only collections cannot be modified.");
            }

            public override void RemoveRange(int index, int count)
            {
                throw new NotSupportedException(
                    "Read-only collections cannot be modified.");
            }

            public override void Reverse()
            {
                throw new NotSupportedException(
                    "Read-only collections cannot be modified.");
            }

            public override void Reverse(int index, int count)
            {
                throw new NotSupportedException(
                    "Read-only collections cannot be modified.");
            }

            public override void Sort()
            {
                throw new NotSupportedException(
                    "Read-only collections cannot be modified.");
            }

            public override void Sort(IComparer<PingbackInfo> comparer)
            {
                throw new NotSupportedException(
                    "Read-only collections cannot be modified.");
            }

            public override void Sort(int index, int count, IComparer<PingbackInfo> comparer)
            {
                throw new NotSupportedException(
                    "Read-only collections cannot be modified.");
            }

            public override PingbackInfo[] ToArray()
            {
                return this._collection.ToArray();
            }

            public override void TrimToSize()
            {
                throw new NotSupportedException(
                    "Read-only collections cannot be modified.");
            }

            #endregion
        }

        #endregion
        #region Class SyncList

        [Serializable]
        private sealed class SyncList : PingbackInfoCollection
        {
            #region Private Fields

            private PingbackInfoCollection _collection;
            private object _root;

            #endregion
            #region Internal Constructors

            internal SyncList(PingbackInfoCollection collection) :
                base(Tag.Default)
            {

                this._root = collection.SyncRoot;
                this._collection = collection;
            }

            #endregion
            #region Protected Properties

            protected override PingbackInfo[] InnerArray
            {
                get { lock (this._root) return this._collection.InnerArray; }
            }

            #endregion
            #region Public Properties

            public override int Capacity
            {
                get { lock (this._root) return this._collection.Capacity; }
                set { lock (this._root) this._collection.Capacity = value; }
            }

            public override int Count
            {
                get { lock (this._root) return this._collection.Count; }
            }

            public override bool IsFixedSize
            {
                get { return this._collection.IsFixedSize; }
            }

            public override bool IsReadOnly
            {
                get { return this._collection.IsReadOnly; }
            }

            public override bool IsSynchronized
            {
                get { return true; }
            }

            public override bool IsUnique
            {
                get { return this._collection.IsUnique; }
            }

            public override PingbackInfo this[int index]
            {
                get { lock (this._root) return this._collection[index]; }
                set { lock (this._root) this._collection[index] = value; }
            }

            public override object SyncRoot
            {
                get { return this._root; }
            }

            #endregion
            #region Public Methods

            public override void Add(PingbackInfo value)
            {
                lock (this._root) { this._collection.Add(value); }
            }

            public override void AddRange(PingbackInfoCollection collection)
            {
                lock (this._root) this._collection.AddRange(collection);
            }

            public override void AddRange(PingbackInfo[] array)
            {
                lock (this._root) this._collection.AddRange(array);
            }

            public override int BinarySearch(PingbackInfo value)
            {
                lock (this._root) return this._collection.BinarySearch(value);
            }

            public override void Clear()
            {
                lock (this._root) this._collection.Clear();
            }

            public override object Clone()
            {
                lock (this._root)
                    return new SyncList((PingbackInfoCollection)this._collection.Clone());
            }

            public override void CopyTo(PingbackInfo[] array)
            {
                lock (this._root) this._collection.CopyTo(array);
            }

            public override void CopyTo(PingbackInfo[] array, int arrayIndex)
            {
                lock (this._root) this._collection.CopyTo(array, arrayIndex);
            }

            public override IEnumerator<PingbackInfo> GetEnumerator()
            {
                lock (this._root) return this._collection.GetEnumerator();
            }

            public override int IndexOf(PingbackInfo value)
            {
                lock (this._root) return this._collection.IndexOf(value);
            }

            public override void Insert(int index, PingbackInfo value)
            {
                lock (this._root) this._collection.Insert(index, value);
            }

            public override bool Remove(PingbackInfo value)
            {
                lock (this._root) { return this._collection.Remove(value); }
            }

            public override void RemoveAt(int index)
            {
                lock (this._root) this._collection.RemoveAt(index);
            }

            public override void RemoveRange(int index, int count)
            {
                lock (this._root) this._collection.RemoveRange(index, count);
            }

            public override void Reverse()
            {
                lock (this._root) this._collection.Reverse();
            }

            public override void Reverse(int index, int count)
            {
                lock (this._root) this._collection.Reverse(index, count);
            }

            public override void Sort()
            {
                lock (this._root) this._collection.Sort();
            }

            public override void Sort(IComparer<PingbackInfo> comparer)
            {
                lock (this._root) this._collection.Sort(comparer);
            }

            public override void Sort(int index, int count, IComparer<PingbackInfo> comparer)
            {
                lock (this._root) this._collection.Sort(index, count, comparer);
            }

            public override PingbackInfo[] ToArray()
            {
                lock (this._root) return this._collection.ToArray();
            }

            public override void TrimToSize()
            {
                lock (this._root) this._collection.TrimToSize();
            }

            #endregion
        }

        #endregion
        #region Class UniqueList

        [Serializable]
        private sealed class UniqueList : PingbackInfoCollection
        {
            #region Private Fields

            private PingbackInfoCollection _collection;

            #endregion
            #region Internal Constructors

            internal UniqueList(PingbackInfoCollection collection) :
                base(Tag.Default)
            {
                this._collection = collection;
            }

            #endregion
            #region Protected Properties

            protected override PingbackInfo[] InnerArray
            {
                get { return this._collection.InnerArray; }
            }

            #endregion
            #region Public Properties

            public override int Capacity
            {
                get { return this._collection.Capacity; }
                set { this._collection.Capacity = value; }
            }

            public override int Count
            {
                get { return this._collection.Count; }
            }

            public override bool IsFixedSize
            {
                get { return this._collection.IsFixedSize; }
            }

            public override bool IsReadOnly
            {
                get { return this._collection.IsReadOnly; }
            }

            public override bool IsSynchronized
            {
                get { return this._collection.IsSynchronized; }
            }

            public override bool IsUnique
            {
                get { return true; }
            }

            public override PingbackInfo this[int index]
            {
                get { return this._collection[index]; }
                set
                {
                    CheckUnique(index, value);
                    this._collection[index] = value;
                }
            }

            public override object SyncRoot
            {
                get { return this._collection.SyncRoot; }
            }

            #endregion
            #region Public Methods

            public override void Add(PingbackInfo value)
            {
                CheckUnique(value);
                this._collection.Add(value);
            }

            public override void AddRange(PingbackInfoCollection collection)
            {
                foreach (PingbackInfo value in collection)
                    CheckUnique(value);

                this._collection.AddRange(collection);
            }

            public override void AddRange(PingbackInfo[] array)
            {
                foreach (PingbackInfo value in array)
                    CheckUnique(value);

                this._collection.AddRange(array);
            }

            public override int BinarySearch(PingbackInfo value)
            {
                return this._collection.BinarySearch(value);
            }

            public override void Clear()
            {
                this._collection.Clear();
            }

            public override object Clone()
            {
                return new UniqueList((PingbackInfoCollection)this._collection.Clone());
            }

            public override void CopyTo(PingbackInfo[] array)
            {
                this._collection.CopyTo(array);
            }

            public override void CopyTo(PingbackInfo[] array, int arrayIndex)
            {
                this._collection.CopyTo(array, arrayIndex);
            }

            public override IEnumerator<PingbackInfo> GetEnumerator()
            {
                return this._collection.GetEnumerator();
            }

            public override int IndexOf(PingbackInfo value)
            {
                return this._collection.IndexOf(value);
            }

            public override void Insert(int index, PingbackInfo value)
            {
                CheckUnique(value);
                this._collection.Insert(index, value);
            }

            public override bool Remove(PingbackInfo value)
            {
                return this._collection.Remove(value);
            }

            public override void RemoveAt(int index)
            {
                this._collection.RemoveAt(index);
            }

            public override void RemoveRange(int index, int count)
            {
                this._collection.RemoveRange(index, count);
            }

            public override void Reverse()
            {
                this._collection.Reverse();
            }

            public override void Reverse(int index, int count)
            {
                this._collection.Reverse(index, count);
            }

            public override void Sort()
            {
                this._collection.Sort();
            }

            public override void Sort(IComparer<PingbackInfo> comparer)
            {
                this._collection.Sort(comparer);
            }

            public override void Sort(int index, int count, IComparer<PingbackInfo> comparer)
            {
                this._collection.Sort(index, count, comparer);
            }

            public override PingbackInfo[] ToArray()
            {
                return this._collection.ToArray();
            }

            public override void TrimToSize()
            {
                this._collection.TrimToSize();
            }

            #endregion
            #region Private Methods

            private void CheckUnique(PingbackInfo value)
            {
                if (IndexOf(value) >= 0)
                    throw new NotSupportedException(
                        "Unique collections cannot contain duplicate elements.");
            }

            private void CheckUnique(int index, PingbackInfo value)
            {
                int existing = IndexOf(value);
                if (existing >= 0 && existing != index)
                    throw new NotSupportedException(
                        "Unique collections cannot contain duplicate elements.");
            }

            #endregion
        }

        #endregion      */
        #endregion
    }

    #endregion
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.