public IJancyExpressScopedRoutingConfigurationExpression WithHttpHandlerMiddleware <THttpHandlerMiddleware>()
 {
     HttpHandlerMiddlewareTypes.Add(typeof(THttpHandlerMiddleware));
     return(this);
 }
 public IJancyExpressRoutingConfigurationExpression WithHttpHandlerMiddleware(Type type)
 {
     HttpHandlerMiddlewareTypes.Add(type);
     return(this);
 }