This topic has not yet been rated - Rate this topic

IDataSource.GetViewNames Method

Note: This method is new in the .NET Framework version 2.0.

Gets a collection of names representing the list of view objects associated with the IDataSource interface.

Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)

ICollection GetViewNames ()
ICollection GetViewNames ()
function GetViewNames () : ICollection

Return Value

An ICollection that contains the names of the views associated with the IDataSource.

Data source control classes can support one or more named views on their underlying data. The GetViewNames method returns a collection of view names currently associated with the data source control instance. Callers can iterate through the collection of view names and retrieve individual DataSourceView objects with the GetView method.

Data source control classes that implement the IDataSource interface implement the GetViewNames method to return a collection of names that represents all the data source view objects currently associated with the data source control class.

The following code example demonstrates how a data source control that implements the IDataSource interface implements the GetViewNames method, returning an ICollection collection of names. Because the data source supports only one view, the method returns a collection of one element using the default name for the view. This code example is part of a larger example provided for the DataSourceControl class.

    // The ListSourceHelper class calls GetList, which
    // calls the DataSourceControl.GetViewNames method.
    // Override the original implementation to return
    // a collection of one element, the default view name.
    protected override ICollection GetViewNames() {
        ArrayList al = new ArrayList(1);
        al.Add(CsvDataSourceView.DefaultViewName);
        return al as ICollection;
    }
}

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ