8 overrides of ExecuteSelect
System.Web (6)
UI\WebControls\ModelDataSourceView.cs (1)
900protected internal override IEnumerable ExecuteSelect(DataSourceSelectArguments arguments) {
UI\WebControls\ObjectDataSourceView.cs (1)
978protected internal override IEnumerable ExecuteSelect(DataSourceSelectArguments arguments) {
UI\WebControls\ReadOnlyDataSourceView.cs (1)
27protected internal override IEnumerable ExecuteSelect(DataSourceSelectArguments arguments) {
UI\WebControls\SiteMapDataSourceView.cs (1)
30protected internal override IEnumerable ExecuteSelect(DataSourceSelectArguments arguments) {
UI\WebControls\SqlDataSourceView.cs (1)
874protected internal override IEnumerable ExecuteSelect(DataSourceSelectArguments arguments) {
UI\WebControls\XmlDataSourceView.cs (1)
39protected internal override IEnumerable ExecuteSelect(DataSourceSelectArguments arguments) {
System.Web.Entity (1)
System\Data\WebControls\EntityDataSourceView.cs (1)
190protected override IEnumerable ExecuteSelect(DataSourceSelectArguments arguments)
System.Web.Extensions (1)
UI\WebControls\QueryableDataSourceView.cs (1)
523protected internal override IEnumerable ExecuteSelect(DataSourceSelectArguments arguments) {
6 references to ExecuteSelect
System.Web (6)
UI\DataSourceView.cs (1)
293callback(ExecuteSelect(arguments));
UI\HtmlControls\HtmlSelect.cs (1)
596return view.ExecuteSelect(DataSourceSelectArguments.Empty);
UI\ListSourceHelper.cs (1)
110return dataSource.GetView(_name).ExecuteSelect(DataSourceSelectArguments.Empty);
UI\WebControls\BaseDataList.cs (1)
516return _currentView.ExecuteSelect(SelectArguments);
UI\WebControls\ListControl.cs (1)
614IEnumerable data = view.ExecuteSelect(DataSourceSelectArguments.Empty);
UI\WebControls\Repeater.cs (1)
780return view.ExecuteSelect(SelectArguments);