ContainerBuildOptions Enumeration |
Namespace:
Autofac.Builder
Assembly:
Autofac (in Autofac.dll) Version: 6.0.0+39696a967e8826f7f1ebc8c1ff4523c9dd75abe0
Syntax [FlagsAttribute]
public enum ContainerBuildOptions
<FlagsAttribute>
Public Enumeration ContainerBuildOptions
Members
| Member name | Value | Description |
---|
| None | 0 |
No options - the default behavior for container building.
|
| ExcludeDefaultModules | 2 |
Prevents inclusion of standard modules like support for
relationship types including IEnumerableT etc.
|
| IgnoreStartableComponents | 4 |
Does not call Start on components implementing
this interface (useful for module testing.)
|
See Also