DataSourceControl::IDataSource::GetView Method
Gets the named DataSourceView object associated with the DataSourceControl control. Some data source controls support only one view, while others support more than one.
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::DataSourceViewReturns the named DataSourceView associated with the DataSourceControl.
Implements
IDataSource::GetView(String)| Exception | Condition |
|---|---|
| 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.
Note |
|---|
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. |
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.
Note