C# Class Catel.Data.DynamicObservableObjectMetaObject

Class containing metadata for the DynamicObservableObject.
Inheritance: System.Dynamic.DynamicMetaObject
Show file Open project: Catel/Catel

Public Methods

Method 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.

DynamicObservableObjectMetaObject ( Expression parameter, DynamicObservableObject observableObject ) : Reflection

Initializes a new instance of the DynamicObservableObjectMetaObject class.

GetDynamicMemberNames ( ) : IEnumerable

Returns the enumeration of all dynamic member names.

Private Methods

Method Description
DynamicObservableObjectMetaObject ( ) : Reflection

Initializes static members of the DynamicObservableObjectMetaObject class.

Method Details

BindGetMember() public method

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.
return System.Dynamic.DynamicMetaObject

BindSetMember() public method

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.
return System.Dynamic.DynamicMetaObject

DynamicObservableObjectMetaObject() public method

Initializes a new instance of the DynamicObservableObjectMetaObject class.
public DynamicObservableObjectMetaObject ( Expression parameter, DynamicObservableObject observableObject ) : Reflection
parameter System.Linq.Expressions.Expression The parameter.
observableObject DynamicObservableObject The observable object.
return Reflection

GetDynamicMemberNames() public method

Returns the enumeration of all dynamic member names.
public GetDynamicMemberNames ( ) : IEnumerable
return IEnumerable