I am studying ASP.NET 5 documentation (this is great and better than the old). I understand that ASP.NET 5 includes a simple built-in inverse of the management container (IoC), which by default supports constructor injection. As far as I know, services and dependencies are configured inside the ConfigureServices() method.
The ConfigureServices() method is called after the StartUp method.
So my question is : how does ASP.NET 5 internally implement Startup Delays?
I would like to know, because if I want to add another dependency like IFooEnviroment , how can I do this?
dependency-injection asp.net-core
Sirwan Afifi
source share