C# Class Archetype.DelegatingObject

Inheritance: DynamicMetaObjectProviderBase
Afficher le fichier Open project: idavis/Archetype

Méthodes publiques

Méthode Description
DelegatingObject ( ) : System
GetDynamicMemberNames ( ) : IEnumerable

Returns the enumeration of all dynamic member names.

GetMetaObject ( Expression parameter ) : DynamicMetaObject

Provides a T:System.Dynamic.DynamicMetaObject that dispatches to the dynamic virtual methods. The object can be encapsulated inside another T:System.Dynamic.DynamicMetaObject to provide custom behavior for individual actions. This method supports the Dynamic Language Runtime infrastructure for language implementers and it is not intended to be used directly from your code.

Method Details

DelegatingObject() public méthode

public DelegatingObject ( ) : System
Résultat System

GetDynamicMemberNames() public méthode

Returns the enumeration of all dynamic member names.
public GetDynamicMemberNames ( ) : IEnumerable
Résultat IEnumerable

GetMetaObject() public méthode

Provides a T:System.Dynamic.DynamicMetaObject that dispatches to the dynamic virtual methods. The object can be encapsulated inside another T:System.Dynamic.DynamicMetaObject to provide custom behavior for individual actions. This method supports the Dynamic Language Runtime infrastructure for language implementers and it is not intended to be used directly from your code.
public GetMetaObject ( Expression parameter ) : DynamicMetaObject
parameter System.Linq.Expressions.Expression /// The expression that represents to /// dispatch to the dynamic virtual methods. ///
Résultat System.Dynamic.DynamicMetaObject