From 0e63c8b646c727e5407e38ab3cbcfdb6af370511 Mon Sep 17 00:00:00 2001 From: Hristo Kostov Date: Wed, 1 Feb 2017 23:26:34 +0200 Subject: [PATCH] Update startup.md (#2642) Add `IApplicationLifetime` to the list of services that may be requested by the `Configure` method --- aspnetcore/fundamentals/startup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/fundamentals/startup.md b/aspnetcore/fundamentals/startup.md index e0966c0aad..0d3519806d 100644 --- a/aspnetcore/fundamentals/startup.md +++ b/aspnetcore/fundamentals/startup.md @@ -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