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

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

Méthodes publiques

Méthode 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

Méthode Description
GetTypeFilter ( ) : bool>.Func

Method Details

InterceptAllMethodBodies() public static méthode

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

InterceptMethodBody() public static méthode

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.
Résultat void

InterceptMethodBody() public static méthode

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.
Résultat void