2 // Mono.Data.Tds.Protocol.TdsDataRow.cs
5 // Tim Coleman (tim@timcoleman.com)
7 // Copyright (C) Tim Coleman, 2002
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:
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
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.
32 using System
.Collections
;
34 namespace Mono
.Data
.Tds
.Protocol
{
35 public class TdsDataRow
: IList
, ICollection
, IEnumerable
48 list
= new ArrayList ();
52 #endregion // Constructors
56 public int BigDecimalIndex
{
57 get { return bigDecimalIndex; }
58 set { bigDecimalIndex = value; }
62 get { return list.Count; }
65 public bool IsFixedSize
{
69 public bool IsReadOnly
{
73 public bool IsSynchronized
{
74 get { return list.IsSynchronized; }
77 public object SyncRoot
{
78 get { return list.SyncRoot; }
81 public object this[int index
] {
83 if (index
>= list
.Count
)
84 throw new IndexOutOfRangeException ();
87 set { list[index] = value; }
90 #endregion // Properties
94 public int Add (object value)
96 return list
.Add (value);
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)
139 public void RemoveAt (int index
)
141 list
.RemoveAt (index
);
144 #endregion // Methods