IXmlLineInfo.cs 376 B

1234567891011121314151617181920
  1. // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
  2. //
  3. // System.Xml.IXmlLineInfo.cs
  4. //
  5. // Author:
  6. // Jason Diamond ([email protected])
  7. //
  8. // (C) 2001 Jason Diamond http://injektilo.org/
  9. //
  10. namespace System.Xml
  11. {
  12. public interface IXmlLineInfo
  13. {
  14. int LineNumber { get; }
  15. int LinePosition { get; }
  16. bool HasLineInfo();
  17. }
  18. }