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

Represents a class that describes the state of a field just as it is being intercepted by a IFieldInterceptor.
상속: IFieldInterceptionContext
파일 보기 프로젝트 열기: philiplaureano/LinFu

공개 메소드들

메소드 설명
FieldInterceptionContext ( object target, MethodBase targetMethod, FieldInfo targetField, Type hostType ) : System

Initializes a new instance of the FieldInterceptionContext class.

메소드 상세

FieldInterceptionContext() 공개 메소드

Initializes a new instance of the FieldInterceptionContext class.
public FieldInterceptionContext ( object target, MethodBase targetMethod, FieldInfo targetField, Type hostType ) : System
target object The target that hosts the given field.
targetMethod System.Reflection.MethodBase The method that accessed the target field.
targetField System.Reflection.FieldInfo The field currently being accessed by the target method.
hostType System.Type The type that hosts the target field.
리턴 System