//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // sdub //------------------------------------------------------------------------------ namespace System.Xml.XPath { using System; public interface IXPathNavigable { XPathNavigator CreateNavigator(); } }