IFluentCompositor<TImplementation, TConfigurator>
TConfigurator WithAsyncInitializer(Func<TImplementation, IDependencyResolver, CancellationToken, Task> initializer)
Sets an async initializer delegate which will be called when InvokeAsyncInitializers is called.
TConfigurator WithDependencyBinding<TResult>(Expression<Func<TImplementation, TResult>> expression, object dependencyName = null)
Sets a member (property / field) as a dependency that should be filled by the container.
Sets a parameter-less factory delegate for the registration.
TConfigurator WithFactory(Func<IDependencyResolver, TImplementation> factory, bool isCompiledLambda = false)
Sets a factory delegate for the registration that takes an IDependencyResolver as parameter.
Sets a parameterized factory delegate for the registration.
TConfigurator WithFactory<T1, T2>(Func<T1, T2, TImplementation> factory, bool isCompiledLambda = false)
Sets a parameterized factory delegate for the registration.
TConfigurator WithFactory<T1, T2, T3>(Func<T1, T2, T3, TImplementation> factory, bool isCompiledLambda = false)
Sets a parameterized factory delegate for the registration.
TConfigurator WithFactory<T1, T2, T3, T4>(Func<T1, T2, T3, T4, TImplementation> factory, bool isCompiledLambda = false)
Sets a parameterized factory delegate for the registration.
TConfigurator WithFactory<T1, T2, T3, T4, T5>(Func<T1, T2, T3, T4, T5, TImplementation> factory, bool isCompiledLambda = false)
Sets a parameterized factory delegate for the registration.
Sets a delegate which will be called when the container is being disposed.
Sets a delegate which will be called when the service is being constructed.