2 implementations of GetConfigPathFromLocationSubPath
System.Configuration (2)
System\Configuration\Internal\DelegatingConfigHost.cs (1)
174public virtual string GetConfigPathFromLocationSubPath(string configPath, string locationSubPath) {
System\Configuration\Internal\InternalConfigHost.cs (1)
376string IInternalConfigHost.GetConfigPathFromLocationSubPath(string configPath, string locationSubPath) {
4 references to GetConfigPathFromLocationSubPath
System.Configuration (4)
System\Configuration\BaseConfigurationRecord.cs (2)
3393string targetConfigPath = host.GetConfigPathFromLocationSubPath(_configPath, locationSubPath); 3436string targetConfigPath = Host.GetConfigPathFromLocationSubPath(_configPath, locationSectionRecord.SectionXmlInfo.SubPath);
System\Configuration\Internal\DelegatingConfigHost.cs (1)
175return Host.GetConfigPathFromLocationSubPath(configPath, locationSubPath);
System\Configuration\MgmtConfigurationRecord.cs (1)
2824elementLocationPathApplies = StringUtil.EqualsIgnoreCase(ConfigPath, Host.GetConfigPathFromLocationSubPath(Parent.ConfigPath, locationSubPathAttribute));