| 123456789101112131415161718192021222324252627 |
- //
- // IXPathChangeNavigator.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- #if NET_1_2
- using System;
- using System.Collections;
- namespace System.Xml
- {
- public interface IXPathChangeNavigator
- {
- void AcceptChange ();
- void RejectChange ();
- IEnumerable SelectChanges (XmlChangeFilters changeType);
- IEnumerable SelectChanges ();
- }
- }
- #endif
|