File: System\Xml\Xsl\ISourceLineInfo.cs
Project: ndp\fx\src\XmlUtils\System.Data.SqlXml.csproj (System.Data.SqlXml)
//------------------------------------------------------------------------------
// <copyright file="ISourceLineInfo.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
// <owner current="true" primary="true">sdub</owner>
//------------------------------------------------------------------------------
 
namespace System.Xml.Xsl {
    internal interface ISourceLineInfo {
        string Uri      { get; }
        bool IsNoSource { get; }
        Location Start     { get; }
        Location End       { get; }
    }
}