示例#1
0
 public ContentHttpHandler(ContentHttpHandlerOptions options, IWebHostEnvironment hostingEnvironment)
 {
     _options            = options;
     _hostingEnvironment = hostingEnvironment;
 }
示例#2
0
 // Must have constructor with this signature, otherwise exception at run time
 public ContentHandlerMiddleware(RequestDelegate next, ContentHttpHandlerOptions options, IWebHostEnvironment hostingEnvironment)
 {
     _options            = options;
     _hostingEnvironment = hostingEnvironment;
     _next = next;
 }