public ContentMiddleware(RequestDelegate next, UptimeService up)
 {
     nextDelegate = next;
     uptime       = up;
 }
 public ContentMiddleware(RequestDelegate requestDelegate, UptimeService uptimeService)
 {
     nextDelegate       = requestDelegate;
     this.uptimeService = uptimeService;
 }
Example #3
0
 public ContentMiddleware(RequestDelegate dg, UptimeService up)
 {
     requestDelegate = dg;
     uptime          = up;
 }
 public BrowserTypeMiddleware(RequestDelegate requestDelegate, UptimeService uptimeService)
 {
     nextDelegate = requestDelegate;
 }
Example #5
0
 public ContentMiddleware(RequestDelegate next, UptimeService service)
 {
     nextDelegate  = next;
     uptimeService = service;
 }
Example #6
0
 public ContentMiddleware(RequestDelegate nextDelegate, UptimeService uptime)
 {
     this.nextDelegate = nextDelegate;
     this.uptime       = uptime;
 }