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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.XML/System.Xml.XPath/XPathNodeType.cs')
-rw-r--r--mcs/class/System.XML/System.Xml.XPath/XPathNodeType.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/mcs/class/System.XML/System.Xml.XPath/XPathNodeType.cs b/mcs/class/System.XML/System.Xml.XPath/XPathNodeType.cs
deleted file mode 100644
index 22720f838be..00000000000
--- a/mcs/class/System.XML/System.Xml.XPath/XPathNodeType.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-//
-// 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,
- }
-}