C# 클래스 LinFu.Proxy.CallAdapter

Adapts an IInvokeWrapper instance to an IInterceptor instance.
상속: IInterceptor
파일 보기 프로젝트 열기: philiplaureano/LinFu 1 사용 예제들

공개 메소드들

메소드 설명
CallAdapter ( IInvokeWrapper wrapper ) : LinFu.AOP.Interfaces

Initializes the CallAdapter class with the wrapper instance.

Intercept ( IInvocationInfo info ) : object

Intercepts a method call and passes the IInvocationInfo arguments down to the IInvokeWrapper instance.

메소드 상세

CallAdapter() 공개 메소드

Initializes the CallAdapter class with the wrapper instance.
public CallAdapter ( IInvokeWrapper wrapper ) : LinFu.AOP.Interfaces
wrapper IInvokeWrapper The instance that will be called every time the interceptor is invoked.
리턴 LinFu.AOP.Interfaces

Intercept() 공개 메소드

Intercepts a method call and passes the IInvocationInfo arguments down to the IInvokeWrapper instance.
public Intercept ( IInvocationInfo info ) : object
info IInvocationInfo The instance that describes the method currently being executed.
리턴 object