DataSourceView.Select Method

Definition

Gets a list of data asynchronously from the underlying data storage.

C#
public virtual void Select(System.Web.UI.DataSourceSelectArguments arguments, System.Web.UI.DataSourceViewSelectCallback callback);

Parameters

arguments
DataSourceSelectArguments

A DataSourceSelectArguments that is used to request operations on the data beyond basic data retrieval.

callback
DataSourceViewSelectCallback

A DataSourceViewSelectCallback delegate that is used to notify a data-bound control when the asynchronous operation is complete.

Exceptions

Remarks

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.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also