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, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: