Interface IAbpApplicationWithInternalServiceProvider
public interface IAbpApplicationWithInternalServiceProvider : IAbpApplication, IModuleContainer, IApplicationInfoAccessor, IDisposable
- Inherited Members
- Extension Methods
Methods
CreateServiceProvider()
Creates the service provider, but not initializes the modules. Multiple calls returns the same service provider without creating again.
IServiceProvider CreateServiceProvider()
Returns
Initialize()
Creates the service provider and initializes all the modules. If CreateServiceProvider() method was called before, it does not re-create it, but uses the previous one.
void Initialize()
InitializeAsync()
Creates the service provider and initializes all the modules. If CreateServiceProvider() method was called before, it does not re-create it, but uses the previous one.
Task InitializeAsync()