Update startup.md (#2642)

Add `IApplicationLifetime` to the list of services that may be requested by the `Configure` method
pull/2649/head
Hristo Kostov 2017-02-01 23:26:34 +02:00 committed by Rick Anderson
parent 6ee7b28677
commit 0e63c8b646
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ Looking at each method in the `Startup` class in the order in which they are cal
* In the constructor: `IHostingEnvironment`, `ILoggerFactory`
* In the `ConfigureServices` method: `IServiceCollection`
* In the `Configure` method: `IApplicationBuilder`, `IHostingEnvironment`, `ILoggerFactory`
* In the `Configure` method: `IApplicationBuilder`, `IHostingEnvironment`, `ILoggerFactory`, `IApplicationLifetime`
## Additional Resources