1 write to _root
Microsoft.Extensions.Configuration (1)
ConfigurationSection.cs (1)
32
_root
= root;
12 references to _root
Microsoft.Extensions.Configuration (12)
ConfigurationSection.cs (12)
55
return
_root
[Path];
59
_root
[Path] = value;
72
if (
_root
.TryGetConfiguration(path, out value))
91
return
_root
[Path + ConfigurationPath.KeyDelimiter + key];
95
_root
[Path + ConfigurationPath.KeyDelimiter + key] = value;
108
public IConfigurationSection GetSection(string key) =>
_root
.GetSection(Path + ConfigurationPath.KeyDelimiter + key);
114
public IEnumerable<IConfigurationSection> GetChildren() =>
_root
.GetChildrenImplementation(Path);
120
public IChangeToken GetReloadToken() =>
_root
.GetReloadToken();
125
var childCount = Configuration.ConfigurationSectionDebugView.FromConfiguration(this,
_root
).Count;
133
IConfigurationProvider? provider = Configuration.ConfigurationSectionDebugView.GetValueProvider(
_root
, Path);
150
_provider = Configuration.ConfigurationSectionDebugView.GetValueProvider(_current.
_root
, _current.Path);
157
public List<Configuration.ConfigurationSectionDebugView> Sections => Configuration.ConfigurationSectionDebugView.FromConfiguration(_current, _current.
_root
);