14 lines
468 B
C#
14 lines
468 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="IConfigErrorInfo.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Configuration.Internal {
|
|
|
|
public interface IConfigErrorInfo {
|
|
string Filename { get; }
|
|
int LineNumber { get; }
|
|
}
|
|
}
|