Exemplo n.º 1
0
 public StartupMiddleware(StartupContext context, RequestDelegate next, IOptions <StartupOptions> options)
 {
     _context = context;
     _next    = next;
     _options = options.Value;
 }
Exemplo n.º 2
0
 public RunStartupActionsService(StartupContext startupContext, IServiceProvider serviceProvider, ILogger <RunStartupActionsService> logger)
 {
     _startupContext  = startupContext;
     _serviceProvider = serviceProvider;
     _logger          = logger;
 }
 public RunStartupActionsService(StartupContext startupContext, IServiceProvider serviceProvider)
 {
     _startupContext  = startupContext;
     _serviceProvider = serviceProvider;
 }
 public WaitForStartupActionsBeforeServingRequestsMiddleware(StartupContext context, RequestDelegate next, IApplicationLifetime applicationLifetime)
 {
     _context             = context;
     _next                = next;
     _applicationLifetime = applicationLifetime;
 }
Exemplo n.º 5
0
 public StartupHealthCheck(StartupContext context)
 {
     _context = context;
 }