Table of contents
AbstractComponentActivator API Document
Abstract implementation of Castle.MicroKernel.IComponentActivator. The implementors must only override the InternalCreate and InternalDestroy methods in order to perform their creation and destruction logic.
Constructors
AbstractComponentActivator(ComponentModel model, IKernel kernel, ComponentInstanceDelegate onCreation, ComponentInstanceDelegate onDestruction)
Constructs an AbstractComponentActivator
| Parameter | Description |
|---|---|
| model | Missing documentation |
| kernel | Missing documentation |
| onCreation | Missing documentation |
| onDestruction | Missing documentation |
Properties
| Name | Type | Description |
|---|---|---|
| Kernel | IKernel | |
| Model | ComponentModel | |
| OnCreation | ComponentInstanceDelegate | |
| OnDestruction | ComponentInstanceDelegate |
Methods
Destroy(Object instance)
Missing summary
| Parameter | Description |
|---|---|
| instance | Missing documentation |
Create(CreationContext context) : Object
Missing summary
| Parameter | Description |
|---|---|
| context | Missing documentation |
InternalDestroy(Object instance)
Missing summary
| Parameter | Description |
|---|---|
| instance | Missing documentation |
InternalCreate(CreationContext context) : Object
Missing summary
| Parameter | Description |
|---|---|
| context | Missing documentation |