<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0-preview2.19523.17" />

LocationUpdates

namespace System.Configuration { internal class LocationUpdates { internal OverrideModeSetting OverrideMode { get; } internal bool InheritInChildApps { get; } internal SectionUpdates SectionUpdates { get; } internal bool IsDefault { get { if (OverrideMode.IsDefaultForLocationTag) return InheritInChildApps; return false; } } internal LocationUpdates(OverrideModeSetting overrideMode, bool inheritInChildApps) { OverrideMode = overrideMode; InheritInChildApps = inheritInChildApps; SectionUpdates = new SectionUpdates(string.Empty); } internal void CompleteUpdates() { SectionUpdates.CompleteUpdates(); } } }