<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0-preview1.19504.10" />

InternalConfigEventArgs

public sealed class InternalConfigEventArgs : EventArgs
Defines a class that allows the .NET Framework infrastructure to specify event arguments for configuration events.
namespace System.Configuration.Internal { public sealed class InternalConfigEventArgs : EventArgs { public string ConfigPath { get; set; } public InternalConfigEventArgs(string configPath) { ConfigPath = configPath; } } }