2002-04-12 Duncan Mak <duncan@ximian.com>
[mono.git] / mcs / class / System.XML / System.Xml.XPath / XPathResultType.cs
1 //
2 // System.Xml.XPath.XPathResultType
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 XPathResultType
13         {
14                 Number = 0,
15                 String = 1,
16                 Boolean = 2,
17                 NodeSet = 3,
18                 Navigator = 4, // [MonoTODO]
19                 Any = 5,
20                 Error = 6,
21         }
22 }