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

A helper class that extends Cecil to support the IMethodRewriter interface.
Mostrar archivo Open project: philiplaureano/LinFu

Public Methods

Method Description
WeaveWith ( this target, IMethodRewriter rewriter, bool>.Func filter ) : void

Transforms the methods in the target using the given method rewriter.

Method Details

WeaveWith() public static method

Transforms the methods in the target using the given method rewriter.
public static WeaveWith ( this target, IMethodRewriter rewriter, bool>.Func filter ) : void
target this The transformation target.
rewriter IMethodRewriter The method rewriter.
filter bool>.Func The method filter that determines which methods will be rewritten.
return void