Implemented interface member:
property
Path
Microsoft.Extensions.Configuration.IConfigurationSection.Path
10 references to Path
Microsoft.Extensions.Configuration (10)
ConfigurationSection.cs (10)
55return _root[Path]; 59_root[Path] = value; 72return _root[Path + ConfigurationPath.KeyDelimiter + key]; 76_root[Path + ConfigurationPath.KeyDelimiter + key] = value; 89public IConfigurationSection GetSection(string key) => _root.GetSection(Path + ConfigurationPath.KeyDelimiter + key); 95public IEnumerable<IConfigurationSection> GetChildren() => _root.GetChildrenImplementation(Path); 105var s = $"Path = {Path}"; 114IConfigurationProvider? provider = Configuration.ConfigurationSectionDebugView.GetValueProvider(_root, Path); 131_provider = Configuration.ConfigurationSectionDebugView.GetValueProvider(_current._root, _current.Path); 134public string Path => _current.Path;