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

ListSourceHelper.cs « System.Web.UI « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a98c7fcab4bfe8b013a64ae481f8847fffe52d8e (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
//
// System.Web.UI.ListSourceHelper
//
// Authors:
//	Ben Maurer (bmaurer@users.sourceforge.net)
//
// (C) 2003 Ben Maurer
//

#if NET_2_0
using System.Collections;
using System.Collections.Specialized;
using System.Text;

namespace System.Web.UI {
	public sealed class ListSourceHelper {
		private ListSourceHelper () {}
		
		[MonoTODO]
		public static bool ContainsListCollection (IDataSource dataSource)
		{
			throw new NotImplementedException ();
		}
		
		[MonoTODO]
		public static IList GetList (IDataSource dataSource)
		{
			throw new NotImplementedException ();
		}
	}
	

}
#endif