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