Class DataBoundObject
Inheritance
System.Object
DataBoundObject
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: ArtOfTest.Common.Design.ProjectModel
Assembly: ArtOfTest.WebAii.Design.dll
Syntax
public abstract class DataBoundObject
Constructors
DataBoundObject()
Declaration
protected DataBoundObject()
Fields
_data
Declaration
[CLSCompliant(false)]
protected DataRow _data
Field Value
System.Data.DataRow
|
Properties
Data
Declaration
public virtual DataRow Data { get; set; }
Property Value
System.Data.DataRow
|
Methods
BindData(String)
Declaration
protected abstract object BindData(string propertyName)
Parameters
System.String
propertyName
|
Returns
System.Object
|
BindData<T>(String)
Declaration
protected virtual T BindData<T>(string propertyName)
Parameters
System.String
propertyName
|
Returns
T
|
Type Parameters
T
|
BindDataCode(String)
Declaration
protected virtual object BindDataCode(string propertyName)
Parameters
System.String
propertyName
|
Returns
System.Object
|
BindDataCode(String, PropertyInfo)
Declaration
protected virtual object BindDataCode(string propertyName, PropertyInfo customPropertyToBind)
Parameters
System.String
propertyName
|
System.Reflection.PropertyInfo
customPropertyToBind
|
Returns
System.Object
|
BindDataCode(String, String, Type)
Declaration
protected abstract object BindDataCode(string descriptorPropertyName, string controlPropertyName, Type controlPropertyType)
Parameters
System.String
descriptorPropertyName
|
System.String
controlPropertyName
|
System.Type
controlPropertyType
|
Returns
System.Object
|
IsDataBound(String)
Declaration
protected virtual bool IsDataBound(string propertyName)
Parameters
System.String
propertyName
|
Returns
System.Boolean
|