**** Merged from MCS ****
[mono-project.git] / mcs / class / Mono.Data.Tds / Mono.Data.Tds.Protocol / TdsDataRow.cs
blob87bdc4e1c9b0c8839b496d4654344919accb57a6
1 //
2 // Mono.Data.Tds.Protocol.TdsDataRow.cs
3 //
4 // Author:
5 // Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2002
8 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 using System;
32 using System.Collections;
34 namespace Mono.Data.Tds.Protocol {
35 public class TdsDataRow : IList, ICollection, IEnumerable
37 #region Fields
39 ArrayList list;
40 int bigDecimalIndex;
42 #endregion // Fields
44 #region Constructors
46 public TdsDataRow ()
48 list = new ArrayList ();
49 bigDecimalIndex = -1;
52 #endregion // Constructors
54 #region Properties
56 public int BigDecimalIndex {
57 get { return bigDecimalIndex; }
58 set { bigDecimalIndex = value; }
61 public int Count {
62 get { return list.Count; }
65 public bool IsFixedSize {
66 get { return false; }
69 public bool IsReadOnly {
70 get { return false; }
73 public bool IsSynchronized {
74 get { return list.IsSynchronized; }
77 public object SyncRoot {
78 get { return list.SyncRoot; }
81 public object this[int index] {
82 get {
83 if (index > list.Count)
84 throw new IndexOutOfRangeException ();
85 return list[index];
87 set { list[index] = value; }
90 #endregion // Properties
92 #region Methods
94 public int Add (object value)
96 return list.Add (value);
99 public void Clear ()
101 list.Clear ();
104 public bool Contains (object value)
106 return list.Contains (value);
109 public void CopyTo (Array array, int index)
111 list.CopyTo (array, index);
114 public void CopyTo (int index, Array array, int arrayIndex, int count)
116 list.CopyTo (index, array, arrayIndex, count);
119 public IEnumerator GetEnumerator ()
121 return list.GetEnumerator ();
124 public int IndexOf (object value)
126 return list.IndexOf (value);
129 public void Insert (int index, object value)
131 list.Insert (index, value);
134 public void Remove (object value)
136 list.Remove (value);
139 public void RemoveAt (int index)
141 list.RemoveAt (index);
144 #endregion // Methods