* FileSystemInfo.cs: corrected COM visibility of UTC properties
[mono.git] / mcs / class / System.Data.SqlXml / System.Data.Mapping / FieldJoinCollection.cs
1 //\r
2 // System.Data.Mapping.FieldJoinCollection\r
3 //\r
4 // Author:\r
5 //   Tim Coleman (tim@timcoleman.com)\r
6 //\r
7 // Copyright (C) Tim Coleman, 2003\r
8 //\r
9 \r
10 #if NET_1_2\r
11 \r
12 using System.Data.SqlXml;\r
13 using System.Collections;\r
14 \r
15 namespace System.Data.Mapping {\r
16         public class FieldJoinCollection : ReadOnlyCollectionBase\r
17         {\r
18                 #region Properties\r
19         \r
20                 [MonoTODO]\r
21                 public FieldJoin this [int index] {\r
22                         get { throw new NotImplementedException (); }\r
23                 }\r
24                 \r
25                 #endregion // Properties\r
26 \r
27                 #region Methods\r
28 \r
29                 [MonoTODO]\r
30                 public bool Contains (FieldJoin dataSource)\r
31                 {\r
32                         throw new NotImplementedException ();\r
33                 }\r
34 \r
35                 [MonoTODO]\r
36                 public void CopyTo (FieldJoin[] array, int index)\r
37                 {\r
38                         throw new NotImplementedException ();\r
39                 }\r
40 \r
41                 #endregion // Methods\r
42         }\r
43 }\r
44 \r
45 #endif // NET_1_2\r