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

XPathResultType.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: 9b1b481f8403e6ccccedb7b4176b3f5134f1f90f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// System.Xml.XPath.XPathResultType
//
// Author:
//   Jason Diamond (jason@injektilo.org)
//
// (C) 2002 Jason Diamond  http://injektilo.org/
//

namespace System.Xml.XPath
{
	public enum XPathResultType
	{
		Number = 0,
		String = 1,
		Boolean = 2,
		NodeSet = 3,
		Navigator = 4, // [MonoTODO]
		Any = 5,
		Error = 6,
	}
}