C# Class LinFu.AOP.Interfaces.ActivationContext

Represents a class that describes a request to instantiate a particular object type.
Inheritance: IActivationContext
Show file Open project: philiplaureano/LinFu Class Usage Examples

Public Methods

Method Description
ActivationContext ( Type concreteType, object additionalArguments ) : System

Initializes the context with the given parameters.

Method Details

ActivationContext() public method

Initializes the context with the given parameters.
public ActivationContext ( Type concreteType, object additionalArguments ) : System
concreteType System.Type The type to be instantiated.
additionalArguments object The additional arguments that must be passed to the constructor.
return System