/// <summary>
 ///		Creates a synchronized (thread-safe) wrapper for a
 ///     <c>ServiceCategoryCollection</c> instance.
 /// </summary>
 /// <returns>
 ///     An <c>ServiceCategoryCollection</c> wrapper that is synchronized (thread-safe).
 /// </returns>
 public static ServiceCategoryCollection Synchronized(ServiceCategoryCollection list)
 {
     if (list == null)
     {
         throw new ArgumentNullException("list");
     }
     return(new SyncServiceCategoryCollection(list));
 }
 /// <summary>
 ///		Creates a read-only wrapper for a
 ///     <c>ServiceCategoryCollection</c> instance.
 /// </summary>
 /// <returns>
 ///     An <c>ServiceCategoryCollection</c> wrapper that is read-only.
 /// </returns>
 public static ServiceCategoryCollection ReadOnly(ServiceCategoryCollection list)
 {
     if (list == null)
     {
         throw new ArgumentNullException("list");
     }
     return(new ReadOnlyServiceCategoryCollection(list));
 }
        /// <summary>
        ///		Creates a shallow copy of the <see cref="ServiceCategoryCollection"/>.
        /// </summary>
        public virtual object Clone()
        {
            ServiceCategoryCollection newColl = new ServiceCategoryCollection(m_count);

            Array.Copy(m_array, 0, newColl.m_array, 0, m_count);
            newColl.m_count   = m_count;
            newColl.m_version = m_version;

            return(newColl);
        }
        /// <summary>
        ///		Adds the elements of another <c>ServiceCategoryCollection</c> to the current <c>ServiceCategoryCollection</c>.
        /// </summary>
        /// <param name="x">The <c>ServiceCategoryCollection</c> whose elements should be added to the end of the current <c>ServiceCategoryCollection</c>.</param>
        /// <returns>The new <see cref="ServiceCategoryCollection.Count"/> of the <c>ServiceCategoryCollection</c>.</returns>
        public virtual int AddRange(ServiceCategoryCollection x)
        {
            if (m_count + x.Count >= m_array.Length)
            {
                EnsureCapacity(m_count + x.Count);
            }

            Array.Copy(x.m_array, 0, m_array, m_count, x.Count);
            m_count += x.Count;
            m_version++;

            return(m_count);
        }
            public override int AddRange(ServiceCategoryCollection x)
            {
                int result = 0;

                rwLock.AcquireWriterLock(timeout);

                try
                {
                    result = collection.AddRange(x);
                }
                finally
                {
                    rwLock.ReleaseWriterLock();
                }

                return(result);
            }
 internal SyncServiceCategoryCollection(ServiceCategoryCollection list) : base(Tag.Default)
 {
     rwLock     = new System.Threading.ReaderWriterLock();
     collection = list;
 }
 /// <summary>
 ///		Initializes a new instance of the <c>Enumerator</c> class.
 /// </summary>
 /// <param name="tc"></param>
 internal Enumerator(ServiceCategoryCollection tc)
 {
     m_collection = tc;
     m_index      = -1;
     m_version    = tc.m_version;
 }
 /// <summary>
 ///		Initializes a new instance of the <c>ServiceCategoryCollection</c> class
 ///		that contains elements copied from the specified <c>ServiceCategoryCollection</c>.
 /// </summary>
 /// <param name="c">The <c>ServiceCategoryCollection</c> whose elements are copied to the new collection.</param>
 public ServiceCategoryCollection(ServiceCategoryCollection c)
 {
     m_array = new eServiceCategory[c.Count];
     AddRange(c);
 }
 public override int AddRange(ServiceCategoryCollection x)
 {
     throw new NotSupportedException("This is a Read Only Collection and can not be modified");
 }
 internal ReadOnlyServiceCategoryCollection(ServiceCategoryCollection list) : base(Tag.Default)
 {
     m_collection = list;
 }