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