Interface IDnnStartup
An interface for adding extension points to the DNN Startup Logic.
Namespace: DotNetNuke.DependencyInjection
Assembly: DotNetNuke.DependencyInjection.dll
Syntax
public interface IDnnStartup
Methods
| Improve this Doc View SourceConfigureServices(IServiceCollection)
Configure additional services for the host or web application. This method will be called during the Application Startup phase and services will be available anywhere in the application.
Declaration
void ConfigureServices(IServiceCollection services)
Parameters
Type | Name | Description |
---|---|---|
IServiceCollection | services | Service Collection used to registering services in the container. |