RegisterFramework<TFramework>(int)
Registers a custom dependency injection framework.
Declaration
public void RegisterFramework<TFramework>(int priority = 0) where TFramework : IDependencyInjectionFrameworkParameters
| Type | Name | Description |
|---|---|---|
| int | priority | The priority of the framework. Frameworks with higher priority are consulted first. Default is 0. |
Type Parameters
| Name | Description |
|---|---|
| TFramework | The type of the framework to register. Must implement IDependencyInjectionFramework. |