InternalConfigEventArgs
namespace System.Configuration.Internal
{
public sealed class InternalConfigEventArgs : EventArgs
{
public string ConfigPath { get; set; }
public InternalConfigEventArgs(string configPath)
{
ConfigPath = configPath;
}
}
}