2 interfaces inheriting from IDataBoundControl
System.Web (2)
UI\WebControls\IDataBoundItemControl.cs (1)
5public interface IDataBoundItemControl : IDataBoundControl {
UI\WebControls\IDataBoundListControl.cs (1)
6public interface IDataBoundListControl : IDataBoundControl {
1 implementation of IDataBoundControl
System.Web.DynamicData (1)
DynamicData\RepeaterDataBoundAdapter.cs (1)
6internal class RepeaterDataBoundAdapter : System.Web.UI.WebControls.IDataBoundControl {
34 references to IDataBoundControl
System.Web (15)
UI\WebControls\DetailsView.cs (5)
3660string IDataBoundControl.DataSourceID { 3670IDataSource IDataBoundControl.DataSourceObject { 3677object IDataBoundControl.DataSource { 3686string[] IDataBoundControl.DataKeyNames { 3696string IDataBoundControl.DataMember {
UI\WebControls\FormView.cs (5)
3088string IDataBoundControl.DataSourceID { 3098IDataSource IDataBoundControl.DataSourceObject { 3105object IDataBoundControl.DataSource { 3114string[] IDataBoundControl.DataKeyNames { 3124string IDataBoundControl.DataMember {
UI\WebControls\GridView.cs (5)
4542string IDataBoundControl.DataSourceID { 4552IDataSource IDataBoundControl.DataSourceObject { 4559object IDataBoundControl.DataSource { 4568string[] IDataBoundControl.DataKeyNames { 4578string IDataBoundControl.DataMember {
System.Web.DynamicData (14)
DynamicData\DynamicDataExtensions.cs (2)
141IDataBoundControl dataBoundControl = control as IDataBoundControl;
DynamicData\DynamicDataManager.cs (3)
17using IDataBoundControlInterface = System.Web.UI.WebControls.IDataBoundControl; 167IDataBoundControlInterface dataBoundControl = DataControlHelper.GetDataBoundControl(control, true /*failIfNotFound*/); 198internal void RegisterControlInternal(IDataBoundControlInterface dataBoundControl, IDynamicDataSource dataSource, IMetaTable table, bool setSelectionFromUrl, bool isPostBack) {
DynamicData\Util\DataControlHelper.cs (7)
7using IDataBoundControlInterface = System.Web.UI.WebControls.IDataBoundControl; 16IDataBoundControlInterface dataBoundControl = GetDataBoundControl(current, false /*failIfNotFound*/); 27internal static IDataBoundControlInterface GetDataBoundControl(Control control, bool failIfNotFound) { 28if (control is IDataBoundControlInterface) { 29return (IDataBoundControlInterface)control; 31IDataBoundControlInterface dataBoundControl = null; 46internal static IDataBoundControlInterface GetControlAdapter(Control control) {
DynamicData\Util\MetaTableHelper.cs (2)
12using IDataBoundControlInterface = System.Web.UI.WebControls.IDataBoundControl; 156IDataBoundControlInterface dataBoundControl = DataControlHelper.GetDataBoundControl(current, false /*failIfNotFound*/);
System.Web.Extensions (5)
UI\WebControls\ListView.cs (5)
3454string IDataBoundControl.DataSourceID { 3463IDataSource IDataBoundControl.DataSourceObject { 3469object IDataBoundControl.DataSource { 3478string[] IDataBoundControl.DataKeyNames { 3487string IDataBoundControl.DataMember {