| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- //
- // System.Data.OleDb.OleDbErrorCollection
- //
- // Authors:
- // Rodrigo Moya ([email protected])
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Rodrigo Moya, 2002
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Collections;
- using System.Data;
- using System.Data.Common;
- namespace System.Data.OleDb
- {
- public sealed class OleDbErrorCollection : ICollection, IEnumerable
- {
- #region Fields
- ArrayList list;
-
- #endregion // Fields
- #region Properties
- public int Count {
- get { return list.Count; }
- }
- public OleDbError this[int index] {
- get { return (OleDbError) list[index]; }
- }
- object ICollection.SyncRoot {
- get { return list.SyncRoot; }
- }
- bool ICollection.IsSynchronized {
- get { return list.IsSynchronized; }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public void CopyTo (Array array, int index)
- {
- ((OleDbError[])(list.ToArray ())).CopyTo (array, index);
- throw new NotImplementedException ();
- }
- public IEnumerator GetEnumerator ()
- {
- return list.GetEnumerator ();
- }
- IEnumerator IEnumerable.GetEnumerator ()
- {
- return GetEnumerator ();
- }
- #endregion // Methods
- }
- }
|