C# Класс LinFu.AOP.Cecil.Extensions.MethodBodyInterceptionExtensions

Represents an extension class that adds method body interception support to the Mono.Cecil object model.
Показать файл Открыть проект

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

Метод Описание
InterceptAllMethodBodies ( this target ) : void

Intercepts all method bodies on the target item.

InterceptMethodBody ( this target, bool>.Func methodFilter ) : void

Intercepts all method bodies on the target item.

InterceptMethodBody ( this target, IMethodFilter methodFilter ) : void

Intercepts all method bodies on the target item.

Приватные методы

Метод Описание
GetTypeFilter ( ) : bool>.Func

Описание методов

InterceptAllMethodBodies() публичный статический Метод

Intercepts all method bodies on the target item.
public static InterceptAllMethodBodies ( this target ) : void
target this The target to be modified.
Результат void

InterceptMethodBody() публичный статический Метод

Intercepts all method bodies on the target item.
public static InterceptMethodBody ( this target, bool>.Func methodFilter ) : void
target this The target to be modified.
methodFilter bool>.Func The method filter that will determine the methods that will be modified.
Результат void

InterceptMethodBody() публичный статический Метод

Intercepts all method bodies on the target item.
public static InterceptMethodBody ( this target, IMethodFilter methodFilter ) : void
target this The target to be modified.
methodFilter IMethodFilter The method filter that will determine the methods that will be modified.
Результат void