IConfigErrorInfo
Defines an interface used by .NET to support creating error configuration records.
namespace System.Configuration.Internal
{
public interface IConfigErrorInfo
{
string Filename { get; }
int LineNumber { get; }
}
}