C# 클래스 LinFu.AOP.Cecil.Extensions.MethodBodyInterceptionExtensions

Represents an extension class that adds method body interception support to the Mono.Cecil object model.
파일 보기 프로젝트 열기: philiplaureano/LinFu

공개 메소드들

메소드 설명
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