| 12345678910111213141516171819202122232425262728 |
- //
- // IXPathEditor.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- #if NET_1_2
- using System;
- namespace System.Xml
- {
- public interface IXPathEditor
- {
- XmlWriter CreateAttributes ();
- XmlWriter CreateFirstChild ();
- XmlWriter CreateNextSibling ();
- void DeleteCurrent ();
- void SetValue (string value);
- }
- }
- #endif
|