IXPathEditable.cs 228 B

123456789101112131415161718
  1. //
  2. // IXPathEditable.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. #if NET_2_0
  8. using System;
  9. namespace System.Xml.XPath
  10. {
  11. public interface IXPathEditable
  12. {
  13. XPathEditableNavigator CreateEditor ();
  14. }
  15. }
  16. #endif