DataSourceView.Select Method
Assembly: System.Web (in system.web.dll)
public: virtual void Select ( DataSourceSelectArguments^ arguments, DataSourceViewSelectCallback^ callback )
public void Select ( DataSourceSelectArguments arguments, DataSourceViewSelectCallback callback )
public function Select ( arguments : DataSourceSelectArguments, callback : DataSourceViewSelectCallback )
Not applicable.
Parameters
- arguments
A DataSourceSelectArguments that is used to request operations on the data beyond basic data retrieval.
- callback
A DataSourceViewSelectCallback delegate that is used to notify a data-bound control when the asynchronous operation is complete.
The Select method is the asynchronous data retrieval interface for all data source view objects. The Select method calls the ExecuteSelect method, passing any DataSourceSelectArguments supplied. The callback parameter is a delegate that a data-bound control passes to the data source view, which is used to notify the data-bound control when the ExecuteSelect operation has completed. The data returned by the ExecuteSelect call is returned in the parameter of the DataSourceViewSelectCallback delegate.