aspnetcore/test
David Fowler 945b4e63de Added support for middleware activation via IMiddlewareFactory (#773)
* Added support for middleware activation via IMiddlewareFactory
- IMiddlewareFactory and IMiddleware are new extensiblity points for
activating and authoring middleware. Under the covers, middleware is still
very much just a function. This just provides a nice way to get a per request
activated middleware instance that is created and released via the IMiddlewareFactory.
The caveats are that middleware needs to be registered in the container (by default)
and that not possible to explicitly pass arguments directly via UseMiddleware.
- Added tests
2017-02-13 18:53:10 -08:00
..
Microsoft.AspNetCore.Http.Abstractions.Tests Added support for middleware activation via IMiddlewareFactory (#773) 2017-02-13 18:53:10 -08:00
Microsoft.AspNetCore.Http.Extensions.Tests
Microsoft.AspNetCore.Http.Features.Tests
Microsoft.AspNetCore.Http.Tests
Microsoft.AspNetCore.Owin.Tests
Microsoft.AspNetCore.WebUtilities.Tests
Microsoft.Net.Http.Headers.Tests