IXPathNavigable.cs 339 B

1234567891011121314151617
  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.XPath
  11. {
  12. public interface IXPathNavigable
  13. {
  14. XPathNavigator CreateNavigator();
  15. }
  16. }