System.Configuration.Internal.InternalConfigEventArgs
Defines a class that allows the .NET 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);
}
}