DataSourceControl.IDataSource.GetViewNames Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a collection of names, representing the list of DataSourceView objects associated with the DataSourceControl control.
virtual System::Collections::ICollection ^ System.Web.UI.IDataSource.GetViewNames() = System::Web::UI::IDataSource::GetViewNames;
System.Collections.ICollection IDataSource.GetViewNames ();
abstract member System.Web.UI.IDataSource.GetViewNames : unit -> System.Collections.ICollection
override this.System.Web.UI.IDataSource.GetViewNames : unit -> System.Collections.ICollection
Function GetViewNames () As ICollection Implements IDataSource.GetViewNames
Returns
An ICollection that contains the names of the DataSourceView objects associated with the DataSourceControl.
Implements
Remarks
Note
The DataSourceControl class's default implementation, which is called by this interface method, returns null
, which indicates that only one view is supported. If you extend the DataSourceControl class, override the GetViewNames method to return a collection of view names. A name can be passed to the GetView method to return a DataSourceView object.