* SessionStateModule.cs: If using cookieless sessions add an
[mono.git] / mcs / class / System.Web / System.Web.UI / IDataSource.cs
1 //
2 // System.Web.UI.IDataSource
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 interface IDataSource {
17                 event EventHandler DataSourceChanged;
18                 DataSourceView GetView (string viewName);
19                 ICollection GetViewNames ();
20         }
21 }
22 #endif
23