Implemented interface member:
property
this
Microsoft.Extensions.Configuration.IConfiguration.this[System.String]
3 writes to
Microsoft.AspNetCore.Components.WebAssembly.Tests (3)
Hosting\WebAssemblyHostConfigurationTest.cs (3)
28configuration["type"] = "car"; 29configuration["wheels:count"] = "6"; 49configuration["type"] = "car";
7 references to
BasicTestApp (1)
Program.cs (1)
51new PrependMessageLoggerProvider(builder.Configuration["Logging:PrependMessage:Message"], s.GetService<IJSRuntime>()));
Microsoft.AspNetCore.Components.WebAssembly.Tests (6)
Hosting\WebAssemblyHostConfigurationTest.cs (6)
32Assert.Equal("car", configuration["type"]); 33Assert.Equal("blue", configuration["color"]); 34Assert.Equal("6", configuration["wheels:count"]); 52Assert.Equal("car", configuration["type"]); 116Assert.Equal("blue", configuration["color"]); 204Assert.Equal("ValueInMem2", configuration["Key1:Key2"]);