C# Class Catel.Data.DynamicModelBaseMetaObject

Class containing metadata for the DynamicModelBase.
Inheritance: System.Dynamic.DynamicMetaObject
Afficher le fichier Open project: Catel/Catel Class Usage Examples

Méthodes publiques

Méthode Description
BindGetMember ( GetMemberBinder binder ) : DynamicMetaObject

Performs the binding of the dynamic get member operation.

BindSetMember ( SetMemberBinder binder, DynamicMetaObject value ) : DynamicMetaObject

Performs the binding of the dynamic set member operation.

DynamicModelBaseMetaObject ( Expression parameter, Catel.Data.DynamicModelBase model ) : System

Initializes a new instance of the DynamicModelBaseMetaObject class.

Private Methods

Méthode Description
DynamicModelBaseMetaObject ( ) : System

Initializes static members of the DynamicModelBaseMetaObject class.

GetRegisterSimplePropertyMethodInfo ( Type modelBaseType ) : MethodInfo
RegisterPropertyIfNotYetRegistered ( string propertyName, Type propertyType ) : void

Method Details

BindGetMember() public méthode

Performs the binding of the dynamic get member operation.
public BindGetMember ( GetMemberBinder binder ) : DynamicMetaObject
binder System.Dynamic.GetMemberBinder An instance of the that represents the details of the dynamic operation.
Résultat System.Dynamic.DynamicMetaObject

BindSetMember() public méthode

Performs the binding of the dynamic set member operation.
public BindSetMember ( SetMemberBinder binder, DynamicMetaObject value ) : DynamicMetaObject
binder System.Dynamic.SetMemberBinder An instance of the that represents the details of the dynamic operation.
value System.Dynamic.DynamicMetaObject The representing the value for the set member operation.
Résultat System.Dynamic.DynamicMetaObject

DynamicModelBaseMetaObject() public méthode

Initializes a new instance of the DynamicModelBaseMetaObject class.
public DynamicModelBaseMetaObject ( Expression parameter, Catel.Data.DynamicModelBase model ) : System
parameter System.Linq.Expressions.Expression The parameter.
model Catel.Data.DynamicModelBase The model.
Résultat System