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

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

namespace System.Xml.XPath
{
	public enum XPathNodeType
	{
		Root = 0,
		Element = 1,
		Attribute = 2,
		Namespace = 3,
		Text = 4,
		SignificantWhitespace = 5,
		Whitespace = 6,
		ProcessingInstruction = 7,
		Comment = 8,
		All = 9,
	}
}