IXmlLineInfo.cs 302 B

12345678910111213141516171819
  1. //
  2. // System.Xml.IXmlLineInfo.cs
  3. //
  4. // Author:
  5. // Jason Diamond ([email protected])
  6. //
  7. // (C) 2001 Jason Diamond http://injektilo.org/
  8. //
  9. namespace System.Xml
  10. {
  11. public interface IXmlLineInfo
  12. {
  13. int LineNumber { get; }
  14. int LinePosition { get; }
  15. bool HasLineInfo();
  16. }
  17. }