//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Configuration.Internal { public interface IConfigErrorInfo { string Filename { get; } int LineNumber { get; } } }