Interface IConfigurableModule
Interface you can implement as part of the EPiServer Framework initialization chain. ConfigureContainer is called on all IInitializableModule before initialization begins. This allows modification of the container before service instances are created during initialization.
Inherited Members
Namespace: EPiServer.ServiceLocation
Assembly: EPiServer.Framework.dll
Version: 11.20.7Syntax
public interface IConfigurableModule : IInitializableModule
Methods
ConfigureContainer(ServiceConfigurationContext)
Configure the IoC container before initialization.
Declaration
void ConfigureContainer(ServiceConfigurationContext context)
Parameters
Type | Name | Description |
---|---|---|
ServiceConfigurationContext | context | The context on which the container can be accessed. |