IXPathEditor.cs 342 B

12345678910111213141516171819202122232425262728
  1. //
  2. // IXPathEditor.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. #if NET_1_2
  8. using System;
  9. namespace System.Xml
  10. {
  11. public interface IXPathEditor
  12. {
  13. XmlWriter CreateAttributes ();
  14. XmlWriter CreateFirstChild ();
  15. XmlWriter CreateNextSibling ();
  16. void DeleteCurrent ();
  17. void SetValue (string value);
  18. }
  19. }
  20. #endif