| 12345678910111213141516171819 |
- //
- // System.Xml.IXmlLineInfo.cs
- //
- // Author:
- // Jason Diamond ([email protected])
- //
- // (C) 2001 Jason Diamond http://injektilo.org/
- //
- namespace System.Xml
- {
- public interface IXmlLineInfo
- {
- int LineNumber { get; }
- int LinePosition { get; }
- bool HasLineInfo();
- }
- }
|