public void Configuration(IAppBuilder app) { //app.Run(context => //{ // context.Response.ContentType = "text/plain"; // return context.Response.WriteAsync("Hello World!"); //}); app.UseSdnugMiddleware(); app.Use<DemoMiddlewareComponent>( new DemoMiddlewareOption()); }