C# Класс LinFu.Proxy.CallAdapter

Adapts an IInvokeWrapper instance to an IInterceptor instance.
Наследование: IInterceptor
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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