Implemented interface member:
method
GetSection
Microsoft.Extensions.Configuration.IConfiguration.GetSection(System.String)
6 references to GetSection
BasicTestApp (1)
Program.cs (1)
48
builder.Logging.AddConfiguration(builder.Configuration.
GetSection
("Logging"));
Microsoft.AspNetCore.Components.WebAssembly (1)
Hosting\WebAssemblyHostConfiguration.cs (1)
105
result.Add(
GetSection
(child));
Microsoft.AspNetCore.Components.WebAssembly.Tests (4)
Hosting\WebAssemblyHostConfigurationTest.cs (4)
96
var section = configuration.
GetSection
("wheels").AsEnumerable(makePathsRelative: true).ToDictionary(k => k.Key, v => v.Value);
161
var dict = configuration.
GetSection
("Mem1").AsEnumerable(makePathsRelative: true).ToDictionary(k => k.Key, v => v.Value);
167
var dict2 = configuration.
GetSection
("Mem2").AsEnumerable(makePathsRelative: true).ToDictionary(k => k.Key, v => v.Value);
173
var dict3 = configuration.
GetSection
("Mem3").AsEnumerable(makePathsRelative: true).ToDictionary(k => k.Key, v => v.Value);