C# Class 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.
Inheritance: ActivationContext, ITypeActivationContext
Datei anzeigen Open project: philiplaureano/LinFu

Public Methods

Method Description
TypeActivationContext ( object target, MethodBase targetMethod, Type concreteType, object additionalArguments ) : System

Initializes a new instance of the MethodActivationContext class.

Method Details

TypeActivationContext() public method

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