1 write to Configuration
Microsoft.AspNetCore.Components.WebAssembly (1)
Hosting\WebAssemblyHostBuilder.cs (1)
83Configuration = new WebAssemblyHostConfiguration();
10 references to Configuration
BlazorHosted.Client (1)
Program.cs (1)
11builder.Configuration.AddEnvironmentVariables();
BlazorHosted.ClientServiceDefaults (2)
Extensions.cs (2)
38var otlpPathBase = builder.Configuration["OTEL_EXPORTER_OTLP_ENDPOINT"]; 44var serviceName = builder.Configuration["OTEL_SERVICE_NAME"]!;
BlazorStandalone (1)
Program.cs (1)
15builder.Configuration.AddEnvironmentVariables();
BlazorStandalone.ClientServiceDefaults (2)
Extensions.cs (2)
38var otlpPathBase = builder.Configuration["OTEL_EXPORTER_OTLP_ENDPOINT"]; 44var serviceName = builder.Configuration["OTEL_SERVICE_NAME"]!;
Microsoft.AspNetCore.Components.WebAssembly (4)
Hosting\WebAssemblyHost.cs (1)
54_configuration = builder.Configuration;
Hosting\WebAssemblyHostBuilder.cs (3)
65builder.Configuration.AddEnvironmentVariables(); 216Configuration.Add<JsonStreamConfigurationSource>(s => s.Stream = new MemoryStream(appSettingsJson)); 320Services.AddSingleton<IConfiguration>(Configuration);