| 1234567891011121314151617181920 |
- //
- // IXPathChangeNavigable.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- #if NET_2_0
- using System;
- using System.Collections;
- namespace System.Xml.XPath
- {
- public interface IXPathChangeNavigable
- {
- XPathChangeNavigator CreateChangeNavigator ();
- }
- }
- #endif
|