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/XmlNodeType.cs')
-rw-r--r--mcs/class/System.XML/System.Xml/XmlNodeType.cs93
1 files changed, 0 insertions, 93 deletions
diff --git a/mcs/class/System.XML/System.Xml/XmlNodeType.cs b/mcs/class/System.XML/System.Xml/XmlNodeType.cs
deleted file mode 100644
index 8ed73dd8db6..00000000000
--- a/mcs/class/System.XML/System.Xml/XmlNodeType.cs
+++ /dev/null
@@ -1,93 +0,0 @@
-// XmlNodeType.cs
-//
-// This code was automatically generated from
-// ECMA CLI XML Library Specification.
-// Generator: libgen.xsl [1.0; (C) Sergey Chaban (serge@wildwestsoftware.com)]
-// Created: Wed, 5 Sep 2001 06:31:46 UTC
-// Source file: AllTypes.xml
-// URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
-//
-// (C) 2001 Ximian, Inc. http://www.ximian.com
-
-
-namespace System.Xml {
-
-
- /// <summary>
- /// </summary>
- public enum XmlNodeType {
-
- /// <summary>
- /// </summary>
- None = 0,
-
- /// <summary>
- /// </summary>
- Element = 1,
-
- /// <summary>
- /// </summary>
- Attribute = 2,
-
- /// <summary>
- /// </summary>
- Text = 3,
-
- /// <summary>
- /// </summary>
- CDATA = 4,
-
- /// <summary>
- /// </summary>
- EntityReference = 5,
-
- /// <summary>
- /// </summary>
- Entity = 6,
-
- /// <summary>
- /// </summary>
- ProcessingInstruction = 7,
-
- /// <summary>
- /// </summary>
- Comment = 8,
-
- /// <summary>
- /// </summary>
- Document = 9,
-
- /// <summary>
- /// </summary>
- DocumentType = 10,
-
- /// <summary>
- /// </summary>
- DocumentFragment = 11,
-
- /// <summary>
- /// </summary>
- Notation = 12,
-
- /// <summary>
- /// </summary>
- Whitespace = 13,
-
- /// <summary>
- /// </summary>
- SignificantWhitespace = 14,
-
- /// <summary>
- /// </summary>
- EndElement = 15,
-
- /// <summary>
- /// </summary>
- EndEntity = 16,
-
- /// <summary>
- /// </summary>
- XmlDeclaration = 17,
- } // XmlNodeType
-
-} // System.Xml