C# Class RssToolkit.Web.Design.RssDataSourceView

Rss Data Source View
Inheritance: System.Web.UI.DataSourceView
Mostra file Open project: Throy/derp-octo-robot Class Usage Examples

Public Methods

Method Description
Select ( System.Web.UI.DataSourceSelectArguments arguments, DataSourceViewSelectCallback callback ) : void

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

Protected Methods

Method Description
ExecuteSelect ( System.Web.UI.DataSourceSelectArguments arguments ) : IEnumerable

Gets a list of data from the underlying data storage.

Private Methods

Method Description
RssDataSourceView ( RssDataSource owner, string viewName ) : System

Method Details

ExecuteSelect() protected method

Gets a list of data from the underlying data storage.
protected ExecuteSelect ( System.Web.UI.DataSourceSelectArguments arguments ) : IEnumerable
arguments System.Web.UI.DataSourceSelectArguments A that is used to request operations on the data beyond basic data retrieval.
return IEnumerable

Select() public method

Gets a list of data asynchronously from the underlying data storage.
The supplied is null.
public Select ( System.Web.UI.DataSourceSelectArguments arguments, DataSourceViewSelectCallback callback ) : void
arguments System.Web.UI.DataSourceSelectArguments A that is used to request operations on the data beyond basic data retrieval.
callback DataSourceViewSelectCallback A delegate that is used to notify a data-bound control when the asynchronous operation is complete.
return void