1 //------------------------------------------------------------------------------
2 // <copyright file="IDataSource.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 namespace System.Web.UI {
7 
8     using System.Collections;
9 
10     public interface IDataSource {
11 
12         event EventHandler DataSourceChanged;
13 
14 
GetView(string viewName)15         DataSourceView GetView(string viewName);
16 
17 
GetViewNames()18         ICollection GetViewNames();
19     }
20 }
21 
22 
23