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