1 write to _root
Microsoft.Extensions.Configuration (1)
ConfigurationSection.cs (1)
32
_root
= root;
11 references to _root
Microsoft.Extensions.Configuration (11)
ConfigurationSection.cs (11)
55
return
_root
[Path];
59
_root
[Path] = value;
72
return
_root
[Path + ConfigurationPath.KeyDelimiter + key];
76
_root
[Path + ConfigurationPath.KeyDelimiter + key] = value;
89
public IConfigurationSection GetSection(string key) =>
_root
.GetSection(Path + ConfigurationPath.KeyDelimiter + key);
95
public IEnumerable<IConfigurationSection> GetChildren() =>
_root
.GetChildrenImplementation(Path);
101
public IChangeToken GetReloadToken() =>
_root
.GetReloadToken();
106
var childCount = Configuration.ConfigurationSectionDebugView.FromConfiguration(this,
_root
).Count;
114
IConfigurationProvider? provider = Configuration.ConfigurationSectionDebugView.GetValueProvider(
_root
, Path);
131
_provider = Configuration.ConfigurationSectionDebugView.GetValueProvider(_current.
_root
, _current.Path);
138
public List<Configuration.ConfigurationSectionDebugView> Sections => Configuration.ConfigurationSectionDebugView.FromConfiguration(_current, _current.
_root
);