Click or drag to resize

ConfigurationModuleLoad Method

Executes the conversion of configuration data into component registrations.

Namespace:  Autofac.Configuration
Assembly:  Autofac.Configuration (in Autofac.Configuration.dll) Version: 6.0.0+ec1c6438ceb3f3338c7364e35e7303f014e3fc39
Syntax
protected override void Load(
	ContainerBuilder builder
)

Parameters

builder
Type: AutofacContainerBuilder
The ContainerBuilder into which registrations will be placed.
Exceptions
ExceptionCondition
ArgumentNullException Thrown if builder is .
Remarks

This override uses the ConfigurationRegistrar to convert the Configuration into component registrations in the provided builder.

If no specific ConfigurationRegistrar is set, the default ConfigurationRegistrar type will be used.

See Also