Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DataSourceCollection.cs « System.Data.Mapping « System.Data.SqlXml « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0138d952b4d61880efa4c88172ded0efeeb039cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// System.Data.Mapping.DataSourceCollection
//
// Author:
//   Tim Coleman (tim@timcoleman.com)
//
// Copyright (C) Tim Coleman, 2003
//

#if NET_2_0

using System.Collections;
using System.Data.SqlXml;

namespace System.Data.Mapping {
        public class DataSourceCollection : ReadOnlyCollectionBase
        {
		#region Properties
	
		[MonoTODO]
		public DataSource this [int index] {
			get { throw new NotImplementedException (); }
		}
		
		[MonoTODO]
		public DataSource this [string name] {
			get { throw new NotImplementedException (); }
		}

		#endregion // Properties

		#region Methods

		[MonoTODO]
		public bool Contains (DataSource dataSource)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public void CopyTo (DataSource[] array, int index)
		{
			throw new NotImplementedException ();
		}

		#endregion // Methods
        }
}

#endif // NET_2_0