C# Class LinFu.AOP.Interfaces.FieldInterceptionContext

Represents a class that describes the state of a field just as it is being intercepted by a IFieldInterceptor.
Inheritance: IFieldInterceptionContext
Exibir arquivo Open project: philiplaureano/LinFu

Public Methods

Method Description
FieldInterceptionContext ( object target, MethodBase targetMethod, FieldInfo targetField, Type hostType ) : System

Initializes a new instance of the FieldInterceptionContext class.

Method Details

FieldInterceptionContext() public method

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.
return System