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
Показать файл Открыть проект

Открытые методы

Метод Описание
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