Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IXPathNavigable.cs « System.Xml.XPath « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13c9018e7618a5aaaf5a38ceb7ab360935be8ccc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// System.Xml.XPath.IXPathNavigable
//
// Author:
//   Jason Diamond (jason@injektilo.org)
//
// (C) 2001 Jason Diamond  http://injektilo.org/
//

namespace System.Xml.XPath
{
	public interface IXPathNavigable
	{
		XPathNavigator CreateNavigator ();
	}
}