Implemented MoveToElement and MoveToFirstAttribute.
[mono.git] / mcs / class / System.XML / System.Xml.XPath / XPathNamespaceScope.cs
1 //
2 // System.Xml.XPath.XPathNamespaceScope
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 XPathNamespaceScope
13         {
14                 All = 0,
15                 ExcludeXml = 1,
16                 Local =2,
17         }
18 }