namespace OwinFramework.InterfacesV1.Middleware { /// /// Middleware that implements IMiddleware<IResponseProducer> is indicating that it /// will render content to the response stream. This is mostly usefull in /// setting dependencies, for example a NotFound (404) middleware might declare /// a dependency on IPresentation middleware so that it only returns a 404 /// response after the rendering middleware has passed on the request. /// public interface IResponseProducer { } }