ContainerConfiguration
Represents a container configuration
If it's set to true, the container will inject members even without DependencyAttribute.
A filter delegate used to determine which members should be auto injected and which are not.
The member injection rule.
If it's set to true, the container will not track circular dependencies performed with Lazy<T>.
The action which will be invoked when the container configuration changes.
public Func<IEnumerable<ConstructorInfo>, IEnumerable<ConstructorInfo>> ConstructorSelectionRule { get; }
The constructor selection rule.
The default lifetime, used when a service isn't configured with a lifetime.
If it's set to true, the container will inject optional and default values for missing dependencies and primitive types.
A delegate to use external expression compilers.
When it's true, the container validates the lifetime configuration of the resolution
graph via the LifeSpan value,
and checks that scoped services are not resolved from the root scope.
If it's set to true, the container will use an unnamed registration when a named one not found for a request with dependency name.
The actual behavior used when a new service is going to be registered into the container. See the RegistrationBehavior enum for available options.
If it's set to true the container will track circular dependencies in the compiled delegates and will throw an exception if any of it found.
If it's set to true the container will track transient objects for disposal.
If it's set to true, the container will treat the name of a constructor/method parameter or member name as a dependency name used by named resolution.
Represents the configuration which will be invoked when an unknown type being registered.
If it's set to true the container will try to register the unknown type during the activation.