public AuthorizeRequestService(
     IAuthWebServer authWebServer,
     IBoostCommandContext commandContext)
 {
     _authWebServer  = authWebServer;
     _commandContext = commandContext;
 }
예제 #2
0
 public EmbeddedUIMiddleware(
     IBoostCommandContext boostCommandContext,
     RequestDelegate next,
     string path)
 {
     _boostCommandContext = boostCommandContext;
     _next                = next;
     _fileProvider        = CreateManifestFileProvider(path);
     _contentTypeProvider = new FileExtensionContentTypeProvider();
 }
예제 #3
0
 public AppNavigationService(IBoostCommandContext commandContext)
 {
     _commandContext = commandContext;
 }