C# 클래스 Archetype.DelegatingObject

상속: DynamicMetaObjectProviderBase
파일 보기 프로젝트 열기: idavis/Archetype

공개 메소드들

메소드 설명
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.

메소드 상세

DelegatingObject() 공개 메소드

public DelegatingObject ( ) : System
리턴 System

GetDynamicMemberNames() 공개 메소드

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

GetMetaObject() 공개 메소드

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. ///
리턴 System.Dynamic.DynamicMetaObject