Esempio n. 1
0
 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());
 }