System.Web.UI.DataSourceViewSelectCallback Delegate

Represents the asynchronous callback method that a data-bound control supplies to a data source view for asynchronous data retrieval.

Syntax

public delegate void DataSourceViewSelectCallback (IEnumerable data)

Parameters

data
Documentation for this section has not yet been entered.

Remarks

By default, ASP.NET Web page and control execution is synchronous. However, ASP.NET data source controls also support an asynchronous data retrieval pattern for data operations. None of the data source controls provided by ASP.NET version 2.0 are asynchronous, but a control developer can build a data source control that is asynchronous. The System.Web.UI.DataSourceView object supports the DataSourceView.Select(DataSourceSelectArguments, DataSourceViewSelectCallback) method for asynchronous data retrieval. The System.Web.UI.DataSourceViewSelectCallback delegate is passed to the data source view by a data-bound control, so that the view can call this delegate when asynchronous processing is complete and deliver the data to the data-bound control.

Requirements

Namespace: System.Web.UI
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0