This documentation is archived and is not being maintained.

DataSourceControl::IDataSource::GetView Method

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Gets the named DataSourceView object associated with the DataSourceControl control. Some data source controls support only one view, while others support more than one.

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

private:
virtual DataSourceView^ GetView(
	String^ viewName
) sealed = IDataSource::GetView

Parameters

viewName
Type: System::String
The name of the DataSourceView to retrieve. In data source controls that support only one view, such as SqlDataSource, this parameter is ignored.

Return Value

Type: System.Web.UI::DataSourceView
Returns the named DataSourceView associated with the DataSourceControl.

Implements

IDataSource::GetView(String)

ExceptionCondition
ArgumentException

viewName is nullptr.

The viewName parameter is ignored when this method is called on data source controls that support only one view, such as the SqlDataSource and AccessDataSource controls.

NoteNote

The DataSourceControl class's default implementation, which is called by this interface method, returns nullptr. If you extend the DataSourceControl class, override the GetView method to return the specified DataSourceView object.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

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