This repository was archived by the owner on Dec 19, 2018. It is now read-only.

Description
Discussed with @lodejard and @davidfowl :
Change IHttpContextFactory to have two methods:
public interface IHttpContextFactory
{
HttpContext Create(IFeatureCollection featureCollection); // just renamed
void Dispose(HttpContext httpContext); // add this
}
Need to call the new Dispose method from the end of the request from within the server, which is where the context was created.