İçinden gitmiş yapılandırma belgelerinde ASP.NET çekirdeğine. Belgeler, yapılandırmaya uygulamanın herhangi bir yerinden erişebileceğinizi söylüyor.
Şablon tarafından oluşturulan Startup.cs aşağıdadır
public class Startup
{
public Startup(IHostingEnvironment env)
{
var builder = new ConfigurationBuilder()
.SetBasePath(env.ContentRootPath)
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true);
if (env.IsEnvironment("Development"))
{
// This will push telemetry data through Application Insights pipeline faster, allowing you to view results immediately.
builder.AddApplicationInsightsSettings(developerMode: true);
}
builder.AddEnvironmentVariables();
Configuration = builder.Build();
}
public IConfigurationRoot Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container
public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddApplicationInsightsTelemetry(Configuration);
services.AddMvc();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
loggerFactory.AddConsole(Configuration.GetSection("Logging"));
loggerFactory.AddDebug();
app.UseApplicationInsightsRequestTelemetry();
app.UseApplicationInsightsExceptionTelemetry();
app.UseMvc();
}
}
Dolayısıyla, Startup.cs
tüm ayarları yapılandırdığımızda, Startup.cs adlı bir özelliği de var.Configuration
Neyi anlayamıyorum bu yapılandırmaya denetleyicide veya uygulamanın herhangi bir yerinde nasıl erişirsiniz? MS seçenekler örüntüsünü kullanmanızı öneriyor ancak benim yalnızca 4-5 anahtar-değer çiftim var, bu yüzden seçenekler kalıbını kullanmak istemiyorum. Sadece uygulamada Yapılandırmaya erişmek istedim. Herhangi bir sınıfa nasıl enjekte edebilirim?