2003-12-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / ListSourceHelper.cs
1 //
2 // System.Web.UI.ListSourceHelper
3 //
4 // Authors:
5 //      Ben Maurer (bmaurer@users.sourceforge.net)
6 //
7 // (C) 2003 Ben Maurer
8 //
9
10 #if NET_1_2
11 using System.Collections;
12 using System.Collections.Specialized;
13 using System.Text;
14
15 namespace System.Web.UI {
16         public sealed class ListSourceHelper {
17                 private ListSourceHelper () {}
18                 
19                 [MonoTODO]
20                 public static bool ContainsListCollection (IDataSource dataSource)
21                 {
22                         throw new NotImplementedException ();
23                 }
24                 
25                 [MonoTODO]
26                 public static IList GetList (IDataSource dataSource)
27                 {
28                         throw new NotImplementedException ();
29                 }
30         }
31         
32
33 }
34 #endif
35