Implemented interface member:
property
Path
Microsoft.Extensions.Configuration.IConfigurationSection.Path
12 references to Path
Microsoft.Extensions.Configuration (12)
ConfigurationSection.cs (12)
55
return _root[
Path
];
59
_root[
Path
] = value;
71
string path = key is null ?
Path
:
Path
+ ConfigurationPath.KeyDelimiter + key;
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
);
124
var s = $"Path = {
Path
}";
133
IConfigurationProvider? provider = Configuration.ConfigurationSectionDebugView.GetValueProvider(_root,
Path
);
150
_provider = Configuration.ConfigurationSectionDebugView.GetValueProvider(_current._root, _current.
Path
);
153
public string Path => _current.
Path
;