public ContentMiddleware(RequestDelegate next, UptimeService up) { nextDelegate = next; uptime = up; }
public ContentMiddleware(RequestDelegate requestDelegate, UptimeService uptimeService) { nextDelegate = requestDelegate; this.uptimeService = uptimeService; }
public ContentMiddleware(RequestDelegate dg, UptimeService up) { requestDelegate = dg; uptime = up; }
public BrowserTypeMiddleware(RequestDelegate requestDelegate, UptimeService uptimeService) { nextDelegate = requestDelegate; }
public ContentMiddleware(RequestDelegate next, UptimeService service) { nextDelegate = next; uptimeService = service; }
public ContentMiddleware(RequestDelegate nextDelegate, UptimeService uptime) { this.nextDelegate = nextDelegate; this.uptime = uptime; }