示例#1
0
 public MorestachioMiddleware(MorestachioMiddlewareOptions options)
 {
     _options = options;
 }
 public static IApplicationBuilder UseMorestachio(this IApplicationBuilder app,
                                                  MorestachioMiddlewareOptions options)
 {
     app.UseMiddleware <MorestachioMiddleware>(options);
     return(app);
 }