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

Represents an extension class that adds support for intercepting exceptions thrown at runtime.
파일 보기 프로젝트 열기: philiplaureano/LinFu

공개 메소드들

메소드 설명
InterceptAllExceptions ( this visitable ) : void

Enables exception interception on the given type.

InterceptExceptions ( this visitable, bool>.Func methodFilter ) : void

Enables exception interception on the given type.

InterceptExceptions ( this visitable, IMethodFilter methodFilter ) : void

Enables exception interception on the given type.

비공개 메소드들

메소드 설명
GetMethodFilter ( ) : bool>.Func

메소드 상세

InterceptAllExceptions() 공개 정적인 메소드

Enables exception interception on the given type.
public static InterceptAllExceptions ( this visitable ) : void
visitable this The target type.
리턴 void

InterceptExceptions() 공개 정적인 메소드

Enables exception interception on the given type.
public static InterceptExceptions ( this visitable, bool>.Func methodFilter ) : void
visitable this The target type.
methodFilter bool>.Func The method filter functor that will determine which methods should support exception interception.
리턴 void

InterceptExceptions() 공개 정적인 메소드

Enables exception interception on the given type.
public static InterceptExceptions ( this visitable, IMethodFilter methodFilter ) : void
visitable this The target type.
methodFilter IMethodFilter The instance that will determine which methods should support exception interception.
리턴 void