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

Represents an ActivationContext that can be used to instantiate a given type and be used to describe the method that invoked the instantiation operation as well as specify the object instance that invoked the instantiation itself.
상속: ActivationContext, ITypeActivationContext
파일 보기 프로젝트 열기: philiplaureano/LinFu

공개 메소드들

메소드 설명
TypeActivationContext ( object target, MethodBase targetMethod, Type concreteType, object additionalArguments ) : System

Initializes a new instance of the MethodActivationContext class.

메소드 상세

TypeActivationContext() 공개 메소드

Initializes a new instance of the MethodActivationContext class.
public TypeActivationContext ( object target, MethodBase targetMethod, Type concreteType, object additionalArguments ) : System
target object The object instance that initiated the activation request.
targetMethod System.Reflection.MethodBase The method where the activation was invoked.
concreteType System.Type The type to be constructed.
additionalArguments object The additional arguments that will be passed to the constructor.
리턴 System