C# Class LinFu.AOP.Cecil.Extensions.MethodBodyInterceptionExtensions

Represents an extension class that adds method body interception support to the Mono.Cecil object model.
Mostrar archivo Open project: philiplaureano/LinFu

Public Methods

Method Description
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.

Private Methods

Method Description
GetTypeFilter ( ) : bool>.Func

Method Details

InterceptAllMethodBodies() public static method

Intercepts all method bodies on the target item.
public static InterceptAllMethodBodies ( this target ) : void
target this The target to be modified.
return void

InterceptMethodBody() public static method

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.
return void

InterceptMethodBody() public static method

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.
return void