4 writes to Configuration
Microsoft.AspNetCore.Hosting (4)
GenericHost\WebHostBuilderBase.cs (2)
84Configuration = context.Configuration, 95webHostContext.Configuration = context.Configuration;
WebHostBuilder.cs (2)
62Configuration = _config 286_context.Configuration = configuration;
8 references to Configuration
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
642var kestrelSection = context.Configuration.GetSection("Kestrel");
Microsoft.AspNetCore (5)
WebHost.cs (5)
206loggingBuilder.AddConfiguration(hostingContext.Configuration.GetSection("Logging")); 227StaticWebAssetsLoader.UseStaticWebAssets(ctx.HostingEnvironment, ctx.Configuration); 250options.Configure(builderContext.Configuration.GetSection("Kestrel"), reloadOnChange: true); 263var hosts = hostingContext.Configuration["AllowedHosts"]?.Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries); 270new ConfigurationChangeTokenSource<HostFilteringOptions>(hostingContext.Configuration));
Microsoft.AspNetCore.Hosting (2)
GenericHost\GenericWebHostBuilder.cs (1)
393return _context.Configuration;
WebHostBuilderExtensions.cs (1)
256StaticWebAssetsLoader.UseStaticWebAssets(context.HostingEnvironment, context.Configuration);