// 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 { /// /// public enum XmlNodeType { /// /// None = 0, /// /// Element = 1, /// /// Attribute = 2, /// /// Text = 3, /// /// CDATA = 4, /// /// EntityReference = 5, /// /// Entity = 6, /// /// ProcessingInstruction = 7, /// /// Comment = 8, /// /// Document = 9, /// /// DocumentType = 10, /// /// DocumentFragment = 11, /// /// Notation = 12, /// /// Whitespace = 13, /// /// SignificantWhitespace = 14, /// /// EndElement = 15, /// /// EndEntity = 16, /// /// XmlDeclaration = 17, } // XmlNodeType } // System.Xml