// // IXPathEditor.cs // // Author: // Atsushi Enomoto // #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