Merge pull request #1695 from gregoryyoung/master
[mono.git] / mcs / class / System.Data / System.Data.OleDb / OleDbErrorCollection.cs
1 //
2 // System.Data.OleDb.OleDbErrorCollection
3 //
4 // Authors:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //   Tim Coleman (tim@timcoleman.com)
7 //
8 // Copyright (C) Rodrigo Moya, 2002
9 // Copyright (C) Tim Coleman, 2002
10 //
11
12 //
13 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
14 //
15 // Permission is hereby granted, free of charge, to any person obtaining
16 // a copy of this software and associated documentation files (the
17 // "Software"), to deal in the Software without restriction, including
18 // without limitation the rights to use, copy, modify, merge, publish,
19 // distribute, sublicense, and/or sell copies of the Software, and to
20 // permit persons to whom the Software is furnished to do so, subject to
21 // the following conditions:
22 // 
23 // The above copyright notice and this permission notice shall be
24 // included in all copies or substantial portions of the Software.
25 // 
26 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
30 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
31 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
32 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33 //
34
35 using System.Collections;
36 using System.ComponentModel;
37 using System.Data;
38 using System.Data.Common;
39
40 namespace System.Data.OleDb
41 {
42         [ListBindableAttribute ( false)]
43         [Serializable]
44         public sealed class OleDbErrorCollection : ICollection, IEnumerable
45         {
46                 #region Fields
47
48                 ArrayList items;
49         
50                 #endregion // Fields
51
52                 #region Constructors
53
54                 internal OleDbErrorCollection() {
55                 }
56
57                 #endregion Constructors
58
59                 #region Properties 
60
61                 public int Count {
62                         get {
63                                 return items.Count;
64                         }
65                 }
66
67                 public OleDbError this[int index] {
68                         get {
69                                 return (OleDbError) items[index];
70                         }
71                 }
72
73                 object ICollection.SyncRoot {
74                         get {
75                                 return items.SyncRoot;
76                         }
77                 }
78
79                 bool ICollection.IsSynchronized {
80                         get {
81                                 return items.IsSynchronized;
82                         }
83                 }
84
85                 #endregion // Properties
86
87                 #region Methods
88
89                 internal void Add (OleDbError error)
90                 {
91                         items.Add ((object) error);
92                 }
93                 
94                 public void CopyTo (Array array, int index) 
95                 {
96                         if (array == null)
97                                 throw new ArgumentNullException("array");
98
99                         if ((index < array.GetLowerBound (0)) || (index > array.GetUpperBound (0)))
100                                 throw new ArgumentOutOfRangeException("index");
101
102                         // is the check for IsFixedSize required?
103                         if ((array.IsFixedSize) || (index + this.Count > array.GetUpperBound (0)))
104                                 throw new ArgumentException("array");
105
106                         ((OleDbError[]) (items.ToArray ())).CopyTo (array, index);
107                 }
108
109                 public void CopyTo (OleDbError [] array, int index)
110                 {
111                         items.CopyTo (array, index);
112                 }
113
114                 public IEnumerator GetEnumerator ()
115                 {
116                         return items.GetEnumerator ();
117                 }
118
119                 #endregion // Methods
120         }
121 }