// // System.Data.InternalDataCollectionBase.cs // // Base class for: // DataRowCollection // DataColumnCollection // DataTableCollection // DataRelationCollection // DataConstraintCollection // // Author: // Daniel Morgan // Tim Coleman // // (C) Copyright 2002 Daniel Morgan // (C) Copyright 2002 Tim Coleman // using System; using System.Collections; using System.ComponentModel; namespace System.Data { /// /// Base class for System.Data collection classes /// that are used within a DataTable object /// to represent a collection of /// relations, tables, rows, columns, and constraints /// public class InternalDataCollectionBase : ICollection, IEnumerable { #region Fields // FIXME: keep list protected until mcs/mono is fixed protected ArrayList list = null; private bool readOnly = false; private bool synchronized = false; #endregion #region Constructors public InternalDataCollectionBase() { list = new ArrayList(); } #endregion #region Properties /// /// Gets the total number of elements in a collection. /// [Browsable (false)] public virtual int Count { get { return list.Count; } } /// /// Gets a value indicating whether the InternalDataCollectionBase is read-only. /// [Browsable (false)] public bool IsReadOnly { get { return readOnly; } } /// /// Gets a value indicating whether the InternalDataCollectionBase is synchronized. /// [Browsable (false)] public bool IsSynchronized { get { return synchronized; } } /// /// Gets the items of the collection as a list. /// protected virtual ArrayList List { get { return list; } } /// /// Gets an object that can be used to synchronize the collection. /// [Browsable (false)] public object SyncRoot { get { return this; } } #endregion #region Methods /// /// Copies all the elements in the current InternalDataCollectionBase to a one- /// dimensional Array, starting at the specified InternalDataCollectionBase index. /// public void CopyTo(Array ar, int index) { list.CopyTo (ar, index); } /// /// Gets an IEnumerator for the collection. /// public IEnumerator GetEnumerator() { return list.GetEnumerator (); } #endregion } }