C# 클래스 LinFu.AOP.Interfaces.AroundMethodBodyRegistry

Represents a registry class that handles all class-level interception operations for all modified types.
파일 보기 프로젝트 열기: philiplaureano/LinFu

공개 메소드들

메소드 설명
AddProvider ( IAroundInvokeProvider provider ) : void

Adds an IAroundInvokeProvider to the list of provider instances.

Clear ( ) : void

Clears the list of IAroundInvokeProvider instances.

GetSurroundingImplementation ( IInvocationInfo context ) : IAroundInvoke

Obtains the IAroundInvoke instance for the given context.

메소드 상세

AddProvider() 공개 정적인 메소드

Adds an IAroundInvokeProvider to the list of provider instances.
public static AddProvider ( IAroundInvokeProvider provider ) : void
provider IAroundInvokeProvider The instance.
리턴 void

Clear() 공개 정적인 메소드

Clears the list of IAroundInvokeProvider instances.
public static Clear ( ) : void
리턴 void

GetSurroundingImplementation() 공개 정적인 메소드

Obtains the IAroundInvoke instance for the given context.
public static GetSurroundingImplementation ( IInvocationInfo context ) : IAroundInvoke
context IInvocationInfo The instance that describes the current method call.
리턴 IAroundInvoke