DataSourceView.Select Method

Definition

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

public:
 virtual void Select(System::Web::UI::DataSourceSelectArguments ^ arguments, System::Web::UI::DataSourceViewSelectCallback ^ callback);
public virtual void Select (System.Web.UI.DataSourceSelectArguments arguments, System.Web.UI.DataSourceViewSelectCallback callback);
abstract member Select : System.Web.UI.DataSourceSelectArguments * System.Web.UI.DataSourceViewSelectCallback -> unit
override this.Select : System.Web.UI.DataSourceSelectArguments * System.Web.UI.DataSourceViewSelectCallback -> unit
Public Overridable Sub Select (arguments As DataSourceSelectArguments, callback As DataSourceViewSelectCallback)

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

See also