2004-03-01 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.XML / System.Xml.XPath / XPathNodeType.cs
1 //
2 // System.Xml.XPath.XPathNodeType
3 //
4 // Author:
5 //   Jason Diamond (jason@injektilo.org)
6 //
7 // (C) 2002 Jason Diamond  http://injektilo.org/
8 //
9
10 namespace System.Xml.XPath
11 {
12         public enum XPathNodeType
13         {
14                 Root = 0,
15                 Element = 1,
16                 Attribute = 2,
17                 Namespace = 3,
18                 Text = 4,
19                 SignificantWhitespace = 5,
20                 Whitespace = 6,
21                 ProcessingInstruction = 7,
22                 Comment = 8,
23                 All = 9,
24         }
25 }