Implemented interface member:
property
Path
Microsoft.Extensions.Configuration.IConfigurationSection.Path
10 references to Path
Microsoft.Extensions.Configuration (10)
ConfigurationSection.cs (10)
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
);
105
var s = $"Path = {
Path
}";
114
IConfigurationProvider? provider = Configuration.ConfigurationSectionDebugView.GetValueProvider(_root,
Path
);
131
_provider = Configuration.ConfigurationSectionDebugView.GetValueProvider(_current._root, _current.
Path
);
134
public string Path => _current.
Path
;